0

I have a RTL webpage with a Ext.Net c# Grid control. I allow scrolling for the grid. This all works fine. After I change value of a cell in RTL "Ext grid" , scroll bar lose correct size.

j0k
  • 22,600
  • 28
  • 79
  • 90
Dead Line
  • 1
  • 3

1 Answers1

0

I find a way to fix it. Call this function after edit a cell in grid.

function FixScrollSize(gridClientID) 
{
    $("[id=" + gridClientID + "] .x-grid-editor").hide();
}
Dead Line
  • 1
  • 3