DmitryEfimenko / TwitterBootstrapMvc

Fluent implementation of ASP.NET-MVC HTML helpers for Twitter Bootstrap.
Apache License 2.0
224 stars 79 forks source link

TextArea resize #252

Closed Yustie closed 10 years ago

Yustie commented 10 years ago

Hi,

How can I resize the TextArea like you've done here: https://www.twitterbootstrapmvc.com/Documentation#inputs-textarea

I'm not getting that icon on the bottom-right where the mouse changes to a diagonal arrow icon.

But I rather have it resizable in the vertical direction only.

DmitryEfimenko commented 10 years ago

The code used to generate that textbox is posted right above it:

@Html.Bootstrap().TextAreaFor(m => m.Description)

The resize feature is not a result of BMVC. Browser is in charge of this functionality.

Yustie commented 10 years ago

Yes I knew that one ;p

Alright, I'll look for a plugin to accomplish this. Thanks.