If the text of a cell is larger than fits in that cell, is it possible to make that cell span across more than one column?
For example, at the moment my grid looks something like this:
+--------+----------+-----+-----+-----+
|Product |Descrip...| | | |
+--------+----------+-----+-----+-----+
Since the contents of the 2nd column are too large to fit in the cell, the contents are truncated.
I would like to be able to see the whole text for the Description column. Thus span across cells, as shown:
+--------+----------+-----+-----+-----+
|Product |Description of the product |
+--------+----------+-----+-----+-----+
Is this possible with the ExtJS 4 grid?