I have been using the dhtmlxgrid for displaying tables, and have run into some issues concerning rowspans and colspans. I have seen some weird behavior where colspans and rowspans are sometimes not rendered correctly. For example, I have a four column table with a colspan. The colspan runs across two colunms (comprising the first two columns). The XML configuration looks like this:
<row>
<cell colspan="2">Columns 1 and 2</cell>
<cell>Column 3</cell>
<cell>Column 4</cell>
</row>
This configuration results in a row where “Columns 1 and 2” spans the first two columns and “Column 4” is displayed in the third column. The words “Column 3” is not displayed. Not sure why this happens. Any suggestions?
Another concern of mine related to the row and column spans is the ability to have a column span and row span in the same cell. I have seen statements throughout the site that suggest that this is not possible. Can anyone confirm this?