Any news on this bug? http://dhtmlx.com/docs/products/kb/in

In relation to the mentioned issue

a) If you are control xml (data) generation you can change it as

… old content here …

It will generate expected result in all browsers.

b) If you need to preserve incoming data as is and in same time fix the height of the row in the browser, you can use

eXcell_ro.prototype.setValue = function(val){
val = “
” +val+ “
”;
dhtmlXGridCellObject.prototype.setValue.call(this,val);
}

it will auto-wrap all data for “ro” columns.