Is there a way to turn off word wrapping on grid columns. For example if you have a long description in a column that extends past the width of the column it will wrap it onto a second line. Is there a way to have it show ... or just cut off the text instead of wrapping it?
thanks very much
works for me
This works and doesn't effect anything but the grid
<style>
.ui-iggrid tbody td {
white-space: nowrap;
}
</style>
This is not a good solution, it changes all <td>s on the page, how do you only effect the grid and not allow the column(s) to expand
Hello Tammy,
You can achieve this with CSS. For example to disable wrapping on all TD elements on the page you could use:
td {
white-space: nowrap;}
I hope this helps! Thank you for using Infragistics forums!
Best regards,
Stamen Stoychev