Categories | Question details Back To List | ||
How to set wordwrap for the particular column? Hi Team, I need to word wrap the particular cell to see its contents .How it is possible? Because now if we can set the enableMultiline(true) to the grid.It will set all the column as wordwrap. So give me the way to set word wrap for the particular cell. Thanks in Advance. Regards, Ashok Answer posted by Support on Jun 02, 2008 06:58 The multiline mode can be enabled for whole grid only. Basically you can change wrapping rules for some particular cell as mygrid.setCellTextStyle(row_id,column_index,"height:auto;white-space:normal;"); |