It seems that IE6 refuses to apply css rule to grid cells content. I need the content to wrap. Works in FF and IE7. Am I missing something?
P.S. css rules from parent window does not interfere. I disabled any "outside" to yui-ext styles for time being.
Code:
var cm = new Ext.grid.ColumnModel([ {
header : "#",
dataIndex : 'row',
width : 40,
resizable : false,
css : 'white-space:normal;'
},{
header : "Field Name",
dataIndex : 'name',
align : 'left',
autoSizeColum: true,
css : 'white-space:normal;'
},{
header : "Description",
dataIndex : 'desc',
width : 200,
css : 'white-space:normal; font-style: italic;',
align : 'left'
},{
header : "Value",
dataIndex : 'value',
width : 200,
css : 'white-space:normal;',
align : 'left'
}
]);
Thank you!