Hello,
I need to put a multiline textbox in on e of the custom cells of my ultrawebgrid.
I have tried using a standard textbox but i got an error, and the netadvantage textbox doesn't support multiline?
Any suggestions?
Thanks
regards,
craig wight.
Hello Craig,
I am not sure whether your scenario allows you to use standard grid column if yes you can configure the cell to be Multi-Line.
Additional information you can see here:
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.2/CLR3.5/html/WebGrid_Use_Multi_Line_Cell_Editing.html
I have set a cell in a hierarchical web grid to be cellmultiline.yes, but it still only functions as a single line cell
with myGrid
.Columns(2).CellMultiline = CellMultiline.Yes
end with
thanks
craigw.
Hello Craigw,
I am not sure what can be the issue, but I would suggest check whether you reference the right band.
grid.Bands[1].Columns[0].CellMultiline = CellMultiline.Yes;
The code above will reference the first column from the child band.