Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by otter on Jun 06, 2008 06:08
open dhtmlx forum
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
Answer posted by Support on Jun 06, 2008 09:30
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")
Answer posted by otter on Jun 09, 2008 00:46
Thanxs