jquery veresion: 1.10.2
telerik.kendoui.professional.2015.3.1111.trial
Ios version 9.1.
I can see, that all the grid data exists in the DOM , but the grid is not rendered.
I have seen, that in earlier versions, the problem could occur due to combination of CSS styles, and I have implemented the proposed fix:
$("#" + gridName).data("kendoGrid").one("dataBound", function (e) {
console.log("databound");
var that = this;
that.tbody[0].style.zoom = 1.1;
setTimeout(function(){
that.tbody[0].style.zoom = 1;
});
});
but that does not make any difference.
So any ideas? Does the "combination af CSS styles problem" still exist?
(It is working like a dream on PC - IE, Chrome, on MAC - Safari and on Windows tablet - but not on iPad)
Kindest regards
Jeppe