or
@{ Html.Kendo() .ComboBoxFor(model => model.SendFromId) .DataTextField("Text") .DataValueField("Value") .HtmlAttributes(new { style = "width:250px", data_value_primitive = "true" }) .DataSource(source => { source.Read(read => { read.Action("People", "Home"); }); }) .Events(e=> { e.Change("onComboChanged"); }) .Deferred() .Render(); }I have code that looks something like this, the data provided by the additionalData function is never sent or received, only the default kendo request parameters are (sort, filter, etc).
Please fix ASAP.
<script> function additionalData() { return { Word: "Bird", Number: 9001 }; }</script>@(Html.Kendo().Grid<KendoUIMvcApplication1.Models.TestModel>() .Name("Grid") .DataSource(dataSource => { dataSource.Ajax().Read(read => read.Action("Read", "Home").Data("additionalData")); }))@(Html.Kendo().DatePickerFor(m => Model.SearchInfo.StartDate).Name("start-date")

columns.Bound(c => c.Id).Title("").ClientTemplate(@Html.ActionLink("Download", "DownloadReport?Id=#=Id#").ToHtmlString());