Telerik Kendo MVC TextBox Multiline Mode

Does anyone know what properties to set to make a Kendo MVC Textbox Multiline?

 @(Html.Kendo().TextBox()
     .Name("txtComments")
     .Value(@Model.Comments)
     .HtmlAttributes(new { style = "width:100%" })
 )

Thanks.


If you want a textarea , I'd recommend doing it this way:

@Html.TextArea("textarea", "", new { @class="k-textbox", style = "width: 100%;" })

as their demo shows. This will allow you to get the same Kendo styling, if that's what you're going for.

链接地址: http://www.djcxy.com/p/27394.html

上一篇: 如何禁用django中的调整textarea大小?

下一篇: Telerik Kendo MVC TextBox多行模式