Hi,
When I select an item in a comboEditor after binding, the item gets selected but the selectedText is blank (as is the control on the screen).
This is the control:
<igEditors:XamComboEditor x:Name="cmbCompany" Margin="0,0,12,0" Theme="Office2k7Blue" IsEditable="True"> <igEditors:XamComboEditor.ItemsProvider> <igEditors:ComboBoxItemsProvider /> </igEditors:XamComboEditor.ItemsProvider></igEditors:XamComboEditor>
This is the binding code:
How can I make the selected item show?
Well for a start, I think the SelectedText property doesn't do what you think it does. It's not like the SelectedItem or SelectedValue property that we're all used to. Rather it gets/sets the editable text in the editable XamComboEditor that is/has been highlighted (aka. selected). So if there's nothing in the XamComboEditor that has been selected, of course that's going to be an empty string.
As for your other problem, I'm not sure. Maybe if you post a small sample project which replicates the problem...?
i have this problem too.
i have a xamcomboeditor bound to a list of objects
when i select the object and click off the combo cell the cell goes blank
strangely if i go back into the cell and click off again the text in the cell does refresh correctly.
any idea why it might be doing this? and how to fix it?