How can I change the size of a multi-line editor-f

2020-03-01 05:30发布

I'm working on an MVC project using C#. Right now, I'm trying to customize my views a little, and I'd like to make the text boxes bigger.

I followed the suggestions in this question to move from a single-line to a multi-line text field: Changing the size of Html.TextBox

Now I'm trying to resize that multi-line field, but I'm not sure where or how to do so.

Here are snippets from my Edit view

<div class="editor-label">
     @Html.LabelFor(model => model.Body)
</div>
<div class="editor-field">
     @Html.EditorFor(model => model.Body)
     @Html.ValidationMessageFor(model => model.Body)
</div>

and from my model:

[DataType(DataType.MultilineText)]  
[DisplayName("Body:")]  
public string Body { get; set; }

7条回答
淡お忘
2楼-- · 2020-03-01 06:10

To adhere to a previously created view style, you can also do this:

<div class="col-md-10 editor-multiline-field">
查看更多
叛逆
3楼-- · 2020-03-01 06:12

In MVC 5 you can use

    @Html.TextAreaFor(model => model.body, 5, 50,  new { @class = "form-control" } )

Works nicely!

查看更多
够拽才男人
4楼-- · 2020-03-01 06:21

If you are using mvc and bootstrap try this:

@Html.TextAreaFor(model => model.Property, new { @class = "form-control", @rows = 5 })
查看更多
我想做一个坏孩纸
5楼-- · 2020-03-01 06:28

try

@Html.TextAreaFor(model => model.Descricao, 5, 50, null)

in View Page

查看更多
ら.Afraid
6楼-- · 2020-03-01 06:31

I just wanna share in mvc 5

  @Html.EditorFor(model => model.Body, 
                  new {htmlAttributes = new {@style="width:yourdesiredwidth;"}
                   })

or use a custom class

查看更多
地球回转人心会变
7楼-- · 2020-03-01 06:32

I would do this with CSS:

<div class="editor-multiline-field">
     @Html.EditorFor(model => model.Body)
     @Html.ValidationMessageFor(model => model.Body)
</div>

and then in your CSS file define the width and height to the desired values:

.editor-multiline-field textarea {
    width: 300px;
    height: 200px;
}
查看更多
登录 后发表回答