I have a GridView that has columns such as:
| A | B C | D E / F |
I want these to be wrapped in a particular way - that is, I do not want to leave it up to the browser to work out whether to wrap or not depending on the column width. So in the above example I may want the following:
| A | B | D |
| | C | E / F |
I have tried using \n
and also using <br/>
however both of these did not work.
Any ideas?