8

I have one text area field called Description in my view. I wish to increase the size of that field.

My code

  <div class="col-sm-3">
  <div class="form-group">
  <span style="color: #f00">*</span>
   @Html.LabelFor(model => model.Description, new { @class = "control-label" })
   @Html.TextAreaFor(model => model.Description, new { @class = "required", style = " rows=10, columns=40" })
   @Html.ValidationMessageFor(model => model.Description)
       </div>
     </div>

My TextArea

TextArea

I want to bring as like which is mention in the below image

Wanted Output

So i gave Rows and columns in textarea field. It increase the size of the text area. But when i shrink the page to phone size means all fields got shrink . But this textarea field is not shrink up to the page size. This is the issue

I kept validation for my fields. I want to show that validation in Red color. I'm using Model validation.

GEOCHET
  • 21,119
  • 15
  • 74
  • 98
Susan
  • 421
  • 2
  • 6
  • 21

8 Answers8

18

Try This:

  @Html.TextAreaFor(model => model.Description, 10,40, htmlAttributes: new {style="width: 100%; max-width: 100%;" })
error_handler
  • 1,191
  • 11
  • 19
14

While this is already answered, Someone out there might still need this.

 @Html.TextAreaFor(model => model.comments, 
 new { @cols = "100", @rows =  "8", @style="width:100%;"})
Kanaiya Katarmal
  • 5,974
  • 4
  • 30
  • 56
Twaya
  • 161
  • 1
  • 4
0

Rows and Cols does not come under style tag. Its an independent attribute for textarea. You can write it as below.

@Html.TextAreaFor(model => model.Description, new { @class = "required", @cols = 40, @rows = 10})
Guruprasad J Rao
  • 29,410
  • 14
  • 101
  • 200
0
Remove textArea element from site.css file. In site.css textarea max-width set as 280px;
Do like

input
,select
/*,textarea*/ 
{
    max-width: 280px;
}
0

use this MVC razor syntax will take only value @Html.TextAreaFor(model => model.comment, 10, 40, new { htmlAttributes = new { @class = "form-control" } });

-1
@Html.TextAreaFor(m => m.Description, 10, 40, new { @class = "form-control required", style="max-width:75% !important;" })
JulienD
  • 7,102
  • 9
  • 50
  • 84
Felix
  • 31
  • 3
-1
  @Html.TextAreaFor(model => model.Description, new { @class = "form-control", @cols = 10, @rows = 10,@style="resize:both;" })
ChrisMM
  • 8,448
  • 13
  • 29
  • 48
-1

@Html.TextAreaFor(model => model.Description,10,40, new { @class = "required"})

Shaikh
  • 1