Hi,
So just working through the mobile demo (http://docs.kendoui.com/tutorials/build-apps-with-kendo-ui-mobile) and I am attempting to use the MVC wrappers where applicable, for instance tabstrip.
It would appear that they don't pick up the styles and js properly and don't render quite as they should.
so this code:
doesn't pick up the mobile style and ignores the
setting.
Are the wrappers supposed to work with a mobile app project?
So just working through the mobile demo (http://docs.kendoui.com/tutorials/build-apps-with-kendo-ui-mobile) and I am attempting to use the MVC wrappers where applicable, for instance tabstrip.
It would appear that they don't pick up the styles and js properly and don't render quite as they should.
so this code:
@Html.Kendo().TabStrip().Name("tabstrip").Items(items =>
{
items.Add().Text("Home").Action("Index", "Home");
items.Add().Text("About").Action("About", "Home");
})
doesn't pick up the mobile style and ignores the
transition: 'slide'
setting.
Are the wrappers supposed to work with a mobile app project?