Hi,
I was using a RadGrid while enabling its freezing columns width RTL direction. All thing works OK, except that i found horizontal scroll does not work for frozen columns in FireFox (When direction is RTL).
I was using a RadGrid while enabling its freezing columns width RTL direction. All thing works OK, except that i found horizontal scroll does not work for frozen columns in FireFox (When direction is RTL).
Since my essential skills are at client side, so I checked some client side scripts of RadGrid, and, I found issue happens by below js function:
"Telerik.Web.UI.GridScrolling.prototype.onGridFrozenScroll"
in line: x = Math.floor(c.scrollLeft / r * 100);
c.scrollLeft has a negative value on FireFox, when RadGrid is in RTL direction.
For now, I overwrote this function and wrapped c.scrollLeft width Math.abs function. and now it works OK.
I was using RadControl for Asp.Net Ajax Q3 2011.
"Telerik.Web.UI.GridScrolling.prototype.onGridFrozenScroll"
in line: x = Math.floor(c.scrollLeft / r * 100);
c.scrollLeft has a negative value on FireFox, when RadGrid is in RTL direction.
For now, I overwrote this function and wrapped c.scrollLeft width Math.abs function. and now it works OK.
I was using RadControl for Asp.Net Ajax Q3 2011.