I have a webgrid with a column that is tied to a WebCombo. The combo has items in it that are multiline and they display perfectly when choosing from the list, but when it displays it in the WebGrid, it just wraps the text...it doesn't keep the multiline. I have the MultiLine on for the column itself.
ITEM_DESCR is a column index.
integer value...
Try this
e.Layout.Bands[0].Columns[ITEM_DESCR].CellMultiline = CellMultiline.Yes;
e.Layout.Bands[0].Columns[ITEM_DESCR].CellStyle.Wrap =
false;
-Ani