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
100
Unable to select from dropdown list inside grid
posted

I'm using combo with the grid but it doesn't seem to do anything when i select a value from the dropdownlist. I have the formatter function like so..

column.For(x => x.Client).HeaderText("Client").Width("150px").FormatterFunction("lookupClient);

and the column setting like this... 

settings.ColumnSetting().ColumnKey("Client").ReadOnly(false).Required(true).EditorType(ColumnEditorType.Combo).ComboEditorOptions(co => co.DataSource(ViewBag.ClientList).ValueKey("ID").TextKey("Value").Mode(ComboMode.DropDown).EnableClearButton(false));

Parents Reply Children
No Data