Hi Alan,
You can try using the Kendo UI MVC Helpers, for example:
Regards,
Alexander Popov
Telerik
You can try using the Kendo UI MVC Helpers, for example:
@(Html.Kendo().MobileSwitch()
.Name(
"switch"
)
.Events(events => events.Change(
"switchChange"
))
)
<script>
function
switchChange(e) {
console.log(
"switch value was changed to "
+ (e.checked ?
"checked"
:
"unchecked"
));
}
</script>
Regards,
Alexander Popov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!