is there a way to make kendo work with angular ng-view and using angular routing to load remote views and controllers
for example have something like
<body ng-app="App" ng-controller="AppCtrl" kendo-mobile-application >
<div class="styleView {{pageClass}}" ng-view kendo-mobile-view></div>
</div>
and routing be something like this
App.config(['$routeProvider',
function ($routeProvider, $locationProvider) {
$routeProvider.
when('/group/:id', {
templateUrl: 'pages/group/group.html',
controller: 'ctrl_Group'
}).
when('/Welcome', {
templateUrl: 'welcome.html',
}).
if it is not possible is it posible to have scrollview without initializing kendo-mobile-application?