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

Kendo Grid Editors Position issue on body zoom change

1 Answer 223 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Narendra
Top achievements
Rank 1
Narendra asked on 14 Mar 2021, 01:54 AM

     hello,

 

I am using Jquery kendo grid. we added a page zoom size change feature with in our web application. The kendo grid is rendering fine on page zoom change, but the editors positions(appearing in the old position as it is at 100% zoom) are not adjusted according to the zoom change. Please find the zoom change function I am using and  the screenshot with issue. Let me know if there is any fix for it.

 

function SetZoom(val) {
    val = parseFloat(val);
    var percentage = parseInt(val * 100) + "%";
    $('body').css('zoom', percentage);
    $('body').css('zoom', val);
    $('body').css({ zoom: val, '-moz-transform': 'scale(' + val + ')' });
}

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 17 Mar 2021, 05:01 PM

Hello Narendra,

Currently, zoomed-in and zoomed-out pages are not supported. See the Notes on Browser Support documentation section: https://docs.telerik.com/kendo-ui/intro/supporting/browser-support#notes-on-web-browser-support

There is a relevant feature request in the Feedback Portal, which you can vote for: https://feedback.telerik.com/kendo-jquery-ui/1474074-provide-support-for-different-zoom-levels-of-the-browsers

Regards,
Ivan Danchev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Grid
Asked by
Narendra
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or