Kendo MVC Textbox Multilineを作成するために設定するプロパティを知っている人はいますか?
@(Html.Kendo().TextBox()
.Name("txtComments")
.Value(@Model.Comments)
.HtmlAttributes(new { style = "width:100%" })
)
ありがとう。
textarea
が必要な場合は、次のようにすることをお勧めします。
@Html.TextArea("textarea", "", new { @class="k-textbox", style = "width: 100%;" })
demo が示すように。こうすることで、剣道のスタイルを同じにすることができます。