Wrapping text in a Grid cell

Hello,
I have a column of type “txt” or “ro”. I’m using enableMultiline(true). My grid is defined as:

var grid = dhtmlXGridFromTable("myTable"); grid.enableAutoWidth(true); grid.enableAutoHeight(true); grid.enableMultiline(true); grid.setImagePath("/dhtmlxGrid/codebase/imgs/"); grid.setColSorting("int,str,str"); grid.makeFilter("textTitle",1); grid.makeFilter("textDescription",2); grid.setSkin("modern"); grid.enableAlterCss("even", "uneven"); grid.sortRows(0,"int","asc"); grid.setSizes();
However when the width of the text exceeds that of the Grid, the height of the cell doesn’t expand to show all the text
I’ve seen the post which says there is a limitation for TreeGrid
viewtopic.php?f=2&t=15938&p=48764&hilit=wrap#p48764

Does that apply to the Grid also and if so, how could I overcome this limitation?
Thank you in advance for your help.

I got it I need to add white-space:normal;