Hi,
We use UltraCombo and sometimes data will be displayed in the drop down to user like "* HIIAMHERE" wherin "* " (asterisk and space) indicates it is some important information etc. What we would like to have is when user selects this row, text must be set as "HIIAMHERE" in the combo's textbox and then TextChanged event must get fired.
Thanks in Advance.
It sounds to me like you just need to use the ValueMember and DIsplayMember properties. You could add an unbound column to your UltraCombo and use the InitializeRow event to populate this unbound column with the strings you want the user to see. Then you just set the DisplayMember property to the key of the unbound column. You would set the ValueMember property to the "real" column and so the combo would return the ValueMember column value as the control's Value and the unbound column text as the Text property.
Hi Mike,
Thanks for your quick reply. If would be great if you could provide us with a sample code snippet which will illustrate the intended behaviour as we are pretty new to Infragistics.