This question is locked. New answers and comments are not allowed.
Hi all,
I want to have some comboboxes in my grid, so i'm using the code:
columns.Bound(x=> x.ID).Title("Status").ClientTemplate(
Html.Telerik().ComboBox()
.Name("XX")
.Enable(false)
.BindTo(new SelectList(Config.X, "xID", "Name", "<#=ID#>"))
//.AutoFill(true)
.ToHtmlString()
)
But the selected Index is not coming through, it's also not in the EditorTemplate:
@(Html.Telerik().ComboBox()
.BindTo(new SelectList(Config.X, "xID", "Name", "<#=ID#>"))
.Name("XX")
.AutoFill(true)
.Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.StartsWith))
)
Help! thanks :)
I want to have some comboboxes in my grid, so i'm using the code:
columns.Bound(x=> x.ID).Title("Status").ClientTemplate(
Html.Telerik().ComboBox()
.Name("XX")
.Enable(false)
.BindTo(new SelectList(Config.X, "xID", "Name", "<#=ID#>"))
//.AutoFill(true)
.ToHtmlString()
)
But the selected Index is not coming through, it's also not in the EditorTemplate:
@(Html.Telerik().ComboBox()
.BindTo(new SelectList(Config.X, "xID", "Name", "<#=ID#>"))
.Name("XX")
.AutoFill(true)
.Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.StartsWith))
)
Help! thanks :)