or
<input data-val="true" data-val-date="The field FechaInicio must be a date." data-val-required="El campo FechaInicio es obligatorio." id="FechaInicio" name="FechaInicio" type="date" value="2013-07-20T15:00:00.000Z" /><input data-val="true" data-val-date="The field FechaInicio must be a date." data-val-required="El campo FechaInicio es obligatorio." id="FechaInicio" name="FechaInicio" type="date" value="15/07/2013" />date.toISOString()Html.Kendo().MultiSelect().HtmlAttributes(new { spellcheck = "false" }) ...function userDataSource(groupData) { console.log("group data"); console.log(groupData); var userDS = new kendo.data.DataSource({ type: "odata", transport: { read: { //url: "/api/UserGroups?$expand=USERS", url: "/api/Users?$expand=USERGROUPS", // only need to expand users for the selected group dataType: "json" // the default result type is JSONP, but WebAPI does not support JSONP }, parameterMap: function (options, type) { // this is optional - if we need to remove any parameters (due to partial OData support in WebAPI var parameterMap = kendo.data.transports.odata.parameterMap(options); return parameterMap; } }, schema: { data: function (data) { console.log("USERS"); console.log(data.value); return data.value; } , total: function (data) { console.log("user count: " + data["odata.count"]); return data["odata.count"]; }, model: { fields: { ITEMID: { type: "string" }, USERNAME: { type: "string" }, FIRSTNAME: { type: "string" }, LASTNAME: { type: "string" }, EMAIL: { type: "string" } } } }, pageSize: 10, //filter: { field: "odata.value.USERGROUPS.ID", operator: "eq", value: groupData.ID }, // filter where the the user.group nav prop ID = group id serverPaging: true, serverFiltering: true, serverSorting: true }); return userDS;}function detailInit(e) { $("<div/>").appendTo(e.detailCell).kendoGrid({ dataSource: userDataSource(e.data), scrollable: false, sortable: true, pageable: true, columns: [ { field: "USERNAME", title: "User Name", width: "130px" }, { field: "EMAIL", title: "Email", width: "130px" }, { field: "NETWORKID", title: "Network ID" } ] }); //var detailRow = e.detailRow; //detailRow.find(".tabstrip").kendoTabStrip({ // animation: { // open: { effects: "fadeIn" } // } //});}filter: { field: "odata.value.USERGROUPS.ID", operator: "eq", value: groupData.ID }, // filter where the the user.group nav prop ID = group id