or
<input id="startDate" type="date" name="startDate" value="1 Sep 2011" readonly="readonly" data-role="datepicker" data-format="d MMM yyyy" />@(Html.Kendo().Window() .Name("TestWindow") .Width(420) .Height(70) .Draggable() .Modal(true) .HtmlAttributes(new { @class = "TestWindow" }) .Resizable() .Title("Window1 ") .Content(@<text>@Html.Partial("_PartialWindow", Model.Prop1) </text>) )var windowobj = window.data("kendoWindow"); windowobj.open(); windowobj.center();windowobj.close();
I've attempted sending the selected values using the parameterMap() method and including those in the returned result set, which works to some extent. But then when I use the multiselect.value() method to add another selection, the change event is not triggered and thus I cannot retrieve the new result set from the server.
Is there another way to achieve what I am trying to do? Or is it possible to manually trigger the updating of the resultset? I've tried using .trigger('change') but that doesn't reload the resultset.
Hoping someone can help!