Hi,
When adding a textarea to a form, I get different html rendered result:
<
kendo-textarea
name
=
"reason-reject"
rows
=
"5"
placeholder
=
"Specify rejection reason"
on-change
=
""
>
</
kendo-textarea
>
@(Html.Kendo().TextArea()
.Name("invitation")
.Placeholder("Enter your text here.")
.Rows(10)
.MaxLength(200)
.HtmlAttributes(new { style = "width: 100%", required = true, data_required_msg = "Please enter a text.", data_max_msg= "Enter value between 1 and 200" })
)
Even using the simple form of widget from the samples, generated invalid html.... Can you provide any guidance ?
Is is possible with taghelper, mark the control as mandatory ?
Any help will be highly appreciated,
Manuel