Normal 0 false false false EN-US X-NONE X-NONE
Hi,
I am using infragistic control XamComboEditor. I have binded list "lstMode" to this
control as below:
xamcombo.ItemsSource = lstMode;
xamcombo.DisplayMemberPath = "Desc";
xamcombo.SelectedIndex = 0;
I would like to bind selectedvalue to XamComboEditor by object data as we can
do in silverlight combobox control as below but I am not getting SelectedValue
property in XamComboEditor .
combo.SelectedValue = objconn.MetadataId;
XamComboEditor does not implement SelectedValue & SelectedValuePath pattern(it does not have these properties). However you could check this forum thread(at the bottom) out to find out how to subclass XamComboEditor in order to implement this pattern.
Regards,
Hi Konstaintin,
Thanks for reply.
I checked that form, do you have any sample regarding that
So i will just go through.
I am waiting your reply.