Scrollbar issue

Hi,
I need to remove hrizontal scrollbar inside dhtmlxGrid

In dhtmlxgrid.js, inside method setSizes():

[code]
//FF3.1, bug in table rendering engine
this._ff_size_delta = (this._ff_size_delta == 0.1) ? 0.2 : 0.1;
if (!_isFF) this._ff_size_delta = 0;

if (!this.dontSetSizes)
{

this.entBox.style.width = Math.max(0, newWidth + (quirks ? 2 : 0) * outerBorder + this._ff_size_delta) + “px”;
this.entBox.style.height = newHeight + (quirks ? 2 : 0) * outerBorder + headerHeight + footerHeight + “px”;
}

[code]

there is logic to calculate width for this.entBox.

For example if this.objBox has width 504px, calculated width for this.entBox is 504,1,1 and in that case horizontal scrollbar is showed, but if width for this.entBox is 505 there is no scrollbar.
And this problem is related to Google Chrome browser.

Have you any ideas how to solved this issue?

Best regards,
Roman

The following css removes the horizontal scrollbar in the dhtmlxgrid:

<style> .objbox{ overflow-x: hidden !important; } </style>