Is there a way to turn on multi line for cell editing without using a template field?
In the older ultra web grid it was done like this:
this.UltraWebGrid1.Columns.FromKey("Description").CellMultiline = CellMultiline.Yes;
Is there something similar for a Web data grid?
Thanks
Hello,
Could you have a look at the following forum thread ;
http://forums.infragistics.com/forums/p/38263/220806.aspx#220806
Hope it helps.
No, this does not work. Basically we have a form that allows client side CRUD. In this form exists a multi-line text box that must update CR/LF to the database.
We update the database by first using javascript to update the cells in the datagrid. Once the cells are updated we send a post back. When we go from text box to datagrid cell, all CR/LF are lost and then not updated to the database.
I tried using the text editor and set it to multi-line as suggested, but the result is the same. Any other ideas on how to resolve this issue would be appreciated.