We are converting an old app to Kendo Web (MVC) to take advantage of the Theme engine so that our designers can control the site much easier than what we have now.
I noticed there is no TextBox or Label control in Kendo. Is there a way to get TextBoxes like the below one that are themed to the current Kendo UI theme and that also can be validated?
I noticed there is no TextBox or Label control in Kendo. Is there a way to get TextBoxes like the below one that are themed to the current Kendo UI theme and that also can be validated?
<
input
data-val
=
"true"
data-val-required
=
"*"
id
=
"UserID"
name
=
"UserID"
type
=
"text"
value
=
""
/>
<
input
data-val
=
"true"
data-val-required
=
"*"
id
=
"Password"
name
=
"Password"
type
=
"password"
/>