Rank: Member Groups: Member
Joined: 7/29/2011 Posts: 14
|
I was wondering if I define a TBC in the eo:Grid to accept a multi-line database field (varchar(100)), can it 'show' as a true textbox filed in the grid row?
I've done this before in asp:gridview control when I have a description field that is 40+ characters in length.
Is it possible with this field definition, or should I use the customfield instead?
Thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
You can set the TextBoxColumn's TextBoxMode to MultiLine. That will display the text in multi-line when the cell is in edit mode. However it will not display as multi-line when the cell is not in edit mode. If you wish to change that, you will need to use CustomColumn.
Thanks!
|
Rank: Member Groups: Member
Joined: 7/29/2011 Posts: 14
|
Thanks.
That's what I thought I'd have to do
|