This is a migrated thread and some comments may be shown as answers.

Grid not rendering on iPad

1 Answer 87 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jeppe
Top achievements
Rank 1
Jeppe asked on 09 Dec 2015, 11:17 AM

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

1 Answer, 1 is accepted

Sort by
0
Dimiter Topalov
Telerik team
answered on 11 Dec 2015, 11:31 AM
Hi Jeppe,

We could not reproduce the described behavior, as everything was working as expected on our devices. Can you please check whether the problem is reproduced with our online demo and if not, send us a dojo demonstrating the issue.

Regards,
Dimiter Topalov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Grid
Asked by
Jeppe
Top achievements
Rank 1
Answers by
Dimiter Topalov
Telerik team
Share this question
or