ExtGrid: Multiline Cell possible?
is it possible to make a cell multiline with auto wrap-text etc.? Just like a normal html-table?
I could not find any hinds in the ExtJS-API.
.x-grid3-cell-inner {white-space:normal;}
how do i add this to my column?
{header: 'Description', css: '.x-grid3-cell-inner {white-space:normal;}', dataIndex: 'worksheet[description]'}
Use:
{header: 'Description', id: 'description', dataIndex: 'worksheet[description]'}
with
.x-grid3-cell-inner {white-space:normal;}
#If you have any other info about this subject , Please add it free.# |