var grid = $("#CaseloadGrid").data("kendoGrid");var savedOptions = localStorage["caseload-grid-options"];if (savedOptions){ var state = JSON.parse(savedOptions); var options = grid.options; options.dataSource.pageSize = state.dataSource.pageSize; options.dataSource.sort = state.dataSource.sort; options.dataSource.page = state.dataSource.page; grid.setOptions(options);}

I have the following code on a page.
@(Html.Kendo().AutoComplete()
.Name("categoryAutocomplete")
.DataTextField("Combined")
.Filter("contains")
.MinLength(3)
.HtmlAttributes(new { style = "width:200px" })
.DataSource(source => source.Read(read => read.Action("GetAntiqueCategories", "Customer"))
.ServerFiltering(false)
)
)
When the page loads and I start typing into the control, the appropriate controller method is getting called and data is returned but I get a JS error in the browser saying:
Uncaught TypeError: e.slice is not a function
at init.success (kendo.all.min.js:27)
at success (kendo.all.min.js:27)
at Object.n.success (kendo.all.min.js:27)
at i (jquery-1.12.4.min.js:2)
at Object.fireWith [as resolveWith] (jquery-1.12.4.min.js:2)
at y (jquery-1.12.4.min.js:4)
at XMLHttpRequest.c (jquery-1.12.4.min.js:4)

the kendo autocomplete i'm using sometimes causes internet explorer crashing.
on read function I handle a async ajax request using the jquery ajax method. the server side is fine, I have tested on chrome and works fine.
the internet explorer version is 11 but it should work with older versions
the kendo version is 2016.1.406
the jquery version is the same include in the kendo package.

Hi,
tabulator appends whitespace to listview when target element is partial or completely outside clientview and you cannot scroll back to the top.
Is there a fix?
Kind regards
Axel
I'm trying to get the dataSource dataItem for a grid value after I have brought up a custom popup screen. I've created a button on the custom popup, and I'm passing the UID to the click event and I can get the row of the grid, however I'm trying to get the datasource dataItem and have had no luck. I've create the following dojo: http://dojo.telerik.com/@pnd@qad.com/oYIXU/2
I've also attached a screenshot of the developer tools which shows my dataItem is undefined, what I need is the dataItem so that I can pass that on to another call. Any help is greatly appreciated.
<script type="text/javascript"> $m = jQuery.noConflict(); $m(document).ready(function myfunction() { $m("#tabstrip").kendoTabStrip({ tabPosition: "left", dataTextField: "desc", dataContentUrlField: "Url", dataValueField: "menuOrder", }).data("kendoTabStrip").select(0); var dataSource = new kendo.data.DataSource( { transport: { read: { url: "http://localhost:58030/Config/api/Feat/Get?Member=ASIA\Kiran", type: "GET", dataType: "json", cache: false, contentType: "application/json", charset: "utf-8" } }, data: { name: { type: "string" }, desc: { type: "string" }, menuOrder: { type: "string" }, Url: { type: "string" } }, }); debugger; var tabStrip = $m("#tabstrip").data("kendoTabStrip"); tabStrip.setDataSource(dataSource); tabStrip.select(0); //tabStrip.select(1); })</script>kendo.data.binders.visible_animated = kendo.data.Binder.extend({ refresh: function () { if (this.bindings.visible_animated.get()) { $(this.element).show('fast'); } else { $(this.element).hide('fast'); } }});
Hi,
I am Using grid control from Telerik UI For asp.net MVC, Grid works fine in loading the data, but the problem come when we try to edit or create a new record with in the grid. When I try to edit the grid Drop down columns as shown as a text box with ID values.
There are couple more problems
1. Filter is not working as expected.
2. Filter is not populating data and not able to select the items from dropdown list.
3. add new and click on update button the controller is not getting value that were submitted.
4. on editing and saving a record the action method is not fired.
please help with above issues.
Please fin the attached file for more info.