dhtmlXGridFromTable and enableMultiline

on IE the dhtmlXGridFromTable and enableMultiline doesn’t work.

If you have multiline rows only the first line of the row is shown

Multiline mode can be enabled before grid initialization, if you called such command after grid converted from table - it will not be applied correctly.
( basically it must not work in FF, but because of some specific looks similar to correct )

To convert table correctly you can use HTML markup similar to next

<table id=“mygrid” name=“mygrid” onbeforeinit=“mygrid.enableMultiline(true)” …

dhtmlXGridFromTable(“mygrid”)

Thanxs