Hi
I have problem with using kendo combobox on grid template editor.
Combobox definition:
@(Html.Kendo().ComboBoxFor(m => m.DepartmentCode)
.DataTextField("Code")
.DataValueField("Code")
.Filter(FilterType.Contains)
.DataSource(action => action.Read(read => read.Action("GetDepartmentsForComboBox", "StockLocation")).ServerFiltering(true))
.MinLength(1)
When I open editor ( by Create button on grid ) filtering works fine.
I pickup one value. Close editor.
Then I open editor second time and it is showing me only last selected value on the combobox list.
I found out that there is a request to server but filter is set up to last selected value instead of entered new text
Is it a bug ? Do I need to clear somehow a last selected value on editor combobox ?
I have problem with using kendo combobox on grid template editor.
Combobox definition:
@(Html.Kendo().ComboBoxFor(m => m.DepartmentCode)
.DataTextField("Code")
.DataValueField("Code")
.Filter(FilterType.Contains)
.DataSource(action => action.Read(read => read.Action("GetDepartmentsForComboBox", "StockLocation")).ServerFiltering(true))
.MinLength(1)
When I open editor ( by Create button on grid ) filtering works fine.
I pickup one value. Close editor.
Then I open editor second time and it is showing me only last selected value on the combobox list.
I found out that there is a request to server but filter is set up to last selected value instead of entered new text
Is it a bug ? Do I need to clear somehow a last selected value on editor combobox ?