dhtmlxgrid

I am having dhtmlxgrid header size as 24px which works fine for firefox.

But on IE the header does not display the full name.It displays only the first part of name.

When I change the header size to 36px it works fine on IE ie it displays the name fully but the grid gets loaded partially both on IE and firefox ie last few rows are not displayed on grid.



What could be the reason ?



Thanks in advance,

Lalit.

Which code you are using to define height of header?
In normal case height of header is auto-detected and such approach works correctly in all browsers.

If you changing styles of header dynamically, and use smart-rendering mode in same time, be sure to add next call after height of header changed
mygrid.setSizes();
This command reset inner sizes of grid, and will force loading of additional data, if data area was increased as result of header height changing.