I have a Grid with a custom popup editor. Inside the popup editor, I have a MultiColumnComboBox.
When I select a value in the MultiColumnComboBox and click Update button in the editor, the Update method does not get fired. When I console out e.model on the save event, dirty flag is false, dirtyFields is empty and contact_id is null.
@Html.LabelFor(model => model.contact_id)
@(Html.Kendo().MultiColumnComboBoxFor(model => model.contact_id)
.AutoBind(
false
)
.Placeholder(
"Select Contact..."
)
.DataTextField(
"contact_number"
)
.DataValueField(
"id"
)
.Columns(columns =>
{
columns.Add().Field(
"contact_number"
).Title(
"Id"
);
columns.Add().Field(
"contact_name"
).Title(
"Name"
);
})
.Filter(FilterType.Contains)
.DataSource(source =>
{
source.Read(read =>
{
read.Action(
"SearchContact"
,
"Manager"
).Data(
"getContactData"
).Type(HttpVerbs.Post);
})
.ServerFiltering(
false
);
})
)