Hi
Although I've searched through the forum and even found a couple of releated threads the solution is still not quite clear for me
We can easily make a cell in UltraWinGrid to be a drop down list using at least three Infragistics controls. But this cell will accept only one value selected from a list.
What if I want to be able to select from multiple values in the drop down list and show selected values as comma separated strings in the cell.
I didn't get how I can do this usign out of the box capabilities. I still can do this with custom coding but if there is something already inbuilt I want to leverage it.
We use Infragistics 2011.2
If you have the samples installed you can refer to the MultiSelect Combos sample under Commands and Editors. This sample demonstrates a grid that can have multiple values selected from the drop down.
Thanks a lot guys. I'll try this out and post results here.
This works, samples were very helpful. Thanks
So the outcome is
This works fine with UltraComboEditor
This doesn't work that well with UltraCombo because it requires you to mainain selected/not selected state in a separate bool column. While this is fine for a standalone UltraCombo, using it in as an editor for UltraGrid is not recommended
And this is not supported with an UltraDropDown at all, only with custom coding.