Thank you Stefan, So the Multiselect has product Names and I have my controller return JSON Result with Product Name, ID, Address etc.
I would like to display Selected ProductName, ID, Address, etc in the grid when the Product Name is selected and the submit button is clicked.
I was able to get the ProductName in multiselect, but unable to figure out how to pass the selected multiselect productNames to the grid to display the corresponding id, address etc, I am presently using MVC for the back end process.
Here is my multiselect -
@(Html.Kendo().MultiSelect()
.Name("ObjProdlist")
.ValuePrimitive(true)
.AutoBind(true)
.AutoWidth(true)
.DataTextField("ProductName")
.DataValueField("id")
.Placeholder("Select Products ")
.ClearButton(true)
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetProduct", "Product");
})
.ServerFiltering(false);
})
.Events(e => e.Change("onChange"))
)
I really appreciate your help with this.
Thanks in Advance Stefan.