Is there a way have an editable XamComboEditor act like a readonly XamComboEditor when the user clicks on the control and it pops open the list ?
SO basically when I click on the control, the list will pop open just like the readonly situation, and I can begin filtering....
HI,
Try setting the XamComboEditor's isEditable property to false.
IsEditable="False"
Here is a help link
http://help.infragistics.com/NetAdvantage/Silverlight/2010.2/CLR4.0/?page=InfragisticsSL4.Controls.Editors.XamComboEditor.v10.2~Infragistics.Controls.Editors.XamComboEditor~IsEditable.html
Sincerely, MattDeveloper Support Engineer
Setting IsEditable does not make this work. Setting this to false makes it so I can type into the combobox to begin filtering which is not what I want. I want to be able to type in the combo box. What I wanted to add it initially when the user clicks on the combobox before typing, have the list open up. That is what the readonly one will do.