I'm trying to figure out a way to turn wrapping off in the cells of my UltraWebGrid control. I've tried setting Wrap="false" TextOverFlow="Clip" in almost every property imaginable to get this to work. It seems to work fine in the <HeaderStyleDefault> tag, but in a normal row cell, it doesn't.... I've tried <CellStyle>, <ValueList>, <RowStyleDefault>, <FixedCellStyleDefault>, etc. I really only need to do this for a single column, but it can be set to the whole grid, doesn't matter. But the column has to stay the width it is currently at, I can't widen it. Any Suggestions? Thanks.
Apparently, Infragistics has no way to disable it, I just used a <div> tag around my content in the cell template and set the style="width:250px; white-space:nowrap; overflow:hidden;"
I have found through trial and error that when you build the columns at design-time, you can turn off text wrapping. In fact, it seems to be off by default. However, when you build the grid dynamically at run-time, you can't seem to turn off text wrapping no matter what.
The functionality is inconsistent to say the least. Does anyone else have a different experience?