Hi! When I have this property set in the DisplayLayout in the ASP page, it does not wrap when you go into edit mode of the cell. I've also tried the property EditCellStyle.Wrap = True in the VB code behind and that doesn't work either. Any ideas? Thanks.
Hi Jeff,
The cell editor is a simple input with type=text which does not have wrapping capabilities.
If you're trying to have a multiline editor for a cell, you need to set CellMultiline=Yes off the cell's column.
Thanks for your reply however I have a couple questions...
1) I don't see CellMultiline property (either in the gridlayout properties OR within the intellisense of the VB code). I'm running Infragistics webgrid 8.2. Where would I find that property?
2) If the properties EditCellStyle.Wrap AND EditCellStyleDefault-Wrap don't wrap the text when you edit the text, what do those properties do?
I found the cellmultiline property
UltraGrid1.DisplayLayout.Bands(0).Columns(0).CellMultiLine = Infragistics.WebUI.UltraWebGrid.CellMultiline.Yes
This issue is resolved. However, I'm still curious as to what the EditCellStyle.Wrap and EditCellStyleDefault-Wrap properties do if they don't make the edit text wrap?
The style object is the same for all elements. For the editor it is not applicable, but works well for almost everything else - cells, headers etc.
Thanks Alex. That property name is confusing however. Its name sounds like that it's for wrapping "editable" text. That's ok, got it to work none the less. Anyway, I have another post (since last Thursday) that I haven't gotten any replies on regarding Row Sizing. Would you have any idea as to my question on that post...
http://forums.infragistics.com/forums/p/25479/93414.aspx#93414
Thanks.