or
We are using kendo UI for a business web application and we have referenced latest internal build. We have a scenario that several Kendo Grids are hosted under different Kendo Tabs and all these Grids are editable. The Grids are rendered/worked perfectly with any desktop browsers, however, under Ipad Safari we found all Gridrows in all Grids are duplicated (rendered twice).
Are there any solutions for this?
Regards,
Gary
update: {
url: crudServiceBaseUrl + "Admin/UpdateProducts",
dataType: "json",
type: "POST"
},
[AcceptVerbs(HttpVerbs.Post)] public void UpdateProducts(List<Product> models) { }
<input id="searchOrder" type="text" name="searchOrder" />transport : { read : { type: 'post', dataType: 'json', url: dataUrl, }, data: { search: $('#searchOrder').val() transport : { read : { type: 'post', dataType: 'json', url: dataUrl, }, data: { search: $('#searchOrder').val() // not works search: 'test' // this works } }, } },...