I have a grid with 3 columns: title, content and date created. My largest column with most content is the content
column. However this column can hold much more text than one row of the grid. Ext JS automatically trims the text from a certain point on.
Can I stop it from automatically trimming the values in the rows and just show the whole content? I would post my code, but it's an entire MVC pattern, which spreads over several files and it would take a lot of time to gather it all.
return '<div style="white-space:pre !important;">'+ val +'</div>';
since our server has returned a data with spaces/horizontal tabs on it likeDate[___________horizontal_tabs___________]Thu Jul 4 2013
– vvens