Focus bug in IE8

dhtmlxgrid.js
133 row

if (this.cell && _isIE && _isIE == 8){var next = this.cell.nextSibling;var parent = this.cell.parentNode;parent.removeChild(this.cell) parent.insertBefore(this.cell,next);};
If the cell input field, then he removed the focus.
Tell me how best to fix it.

What version of dhtmlxGrid are you using? Can you provide steps to reproduce this issue?

Unpack and open test.html in IE8
Try typing something in the input field.
test.zip (633 KB)

What version of dhtmlxGrid are you using? Have you modified source code of the Grid?

Open file dhtmlxGrid/readme.txt

Sources have not changed.

Can you help me?

To fix this issue change your code like the following:

<cell><input type="text" onclick="(e||event).cancelBubble=true;" /></cell>