ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
How to use multiline textbox inside grid inline editing cell
Title:
B
I
{code}
?
I need to use a multiline editor (textarea) inside an inline editing grid row cell, currently using a textbox: new Column { Bind = "Remark", Header = "Remark", Width = 120 } .Mod(o => o.Inline(Html.Awe().TextBox("Remark"))) How to setup the Textbox to be multiline ?
Save Changes
Cancel
RayBen
asked 4 days ago
Answers
B
I
{code}
?
The textbox doesn't have the multiline option right now, but you can use a native textarea instead, here's an example: new Column { Bind = "Name" } .Inl("<textarea name='Name'>#Value</textarea>"),
Save Changes
Cancel
Omu
answered 4 days ago
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK