Hi,
I have a multiselect that works very well:
I also have a grid with a select option that will call a js function; in this function I want to add the selected value from the grid to the select items in the multiselect, if it doesn't already exist. Then call the change event in the multiselect if anything new is added.
Any help will be appreciated.
Thanks,
Shehab
I have a multiselect that works very well:
@(Html.Kendo().MultiSelectFor(model => model.SurgeryMultiSelect).Filter("contains")
.Name("SurgeryMultiSelect")
.DataTextField("Description")
.DataValueField("ProcedureTypeId")
.Placeholder("Select Procedure(s)...")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetAllProcedures", "CommonJsonActions");
});
})
.Events(e =>
{
e.Change("fnSurgeryListChange");
})
)
Any help will be appreciated.
Thanks,
Shehab