Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
Selected values in igcombo by model property
posted

In the version infragistics 16.1 in my razor web page I have multiselection combo with checkbox and selectevalues by property model (array of string)

 @Html.Infragistics().ComboFor(m => m.Reparto).ID("comboReparto").DataSourceUrl("GetComboReparto").SelectedValues(Model.RepartiSel).TextKey("Codice").ValueKey("Codice").ItemTemplate("<span class='comboItem'>${Codice} - ${Descr}</span>").MultiSelection(ComboMultiSelection.OnWithCheckboxes).DataBind().DropDownWidth(300).Width("200px").Render()

In the version 17.2 how can I do?