I have used this sample to add a combo selection into the grid. This works great so far.
http://es.infragistics.com/products/jquery/sample/combo-box/grid-editor
Now I want to change the Combo Box to allow multi selection of items I'm succeded with data with the following setting in Razor.
.ComboEditorOptions(options => { options.DataSource(ViewData["comboDataSource"]);
options.MultiSelection(iComboMultiSelection.OnWithCheckboxes); });
The only problem I have is that currently I only get one value back when I select several items. Can you give me a pointer where to look.
Thanks in advance
I think I found the answer here (it is the same name as the grid)
http://es.infragistics.com/community/forums/p/74435/378889.aspx#378889
Thanks for the good Forum posts.
in the igCombo I have to specify a name of the igCombo, so my question is what is the name of the igCombo in the igGrid, because i didn't saw a way to specify it.
Hello mchur,
In the combo API there is “value” and “values” methods. First one is used to get first selected item in list and the second one returns/sets all selected items as array:
http://help.infragistics.com/jQuery/2012.2//ui.igCombo#methods
Use this method and inform me if you were able to get all selected items.