hey Guys, I am trying to evaluate the Kendo UI for mobile browser and I just tried kendo-drop-down-list which works fine if I include Kendo.all.min.js but does not work with if I used kendo.mobile.min.js?
any idea is that control not supported? if not which all control can I use on with kendo.mobile.min.js? or its extra add that I have add to add? a help would be greatly appreciated. this is html code
<h2> Welcome </h2>
<div ng-controller="BaseData as vm">
Hello...
<br>
<select kendo-drop-down-list
k-option-label="'Select a computer'"
k-data-text-field="'name'"
k-data-value-field="'id'"
k-data-source="vm.computers"></select>
</div>
my controller look like below..nothing fancy I am trying to use angular + kendo ui on mobile.
(function () {
'use strict';
angular.module('app')
.controller('BaseData',[welcome]);
function welcome() {
var vm = this;
vm.activate = activate;
activate();
function activate() {
vm.computers=[
{name: "Macbook Pro", id:1},
{name: "Macbook Air", id: 2},
{name: "Mac Pro", id: 3}
]
}
}
})();
thanks
Manish
any idea is that control not supported? if not which all control can I use on with kendo.mobile.min.js? or its extra add that I have add to add? a help would be greatly appreciated. this is html code
<h2> Welcome </h2>
<div ng-controller="BaseData as vm">
Hello...
<br>
<select kendo-drop-down-list
k-option-label="'Select a computer'"
k-data-text-field="'name'"
k-data-value-field="'id'"
k-data-source="vm.computers"></select>
</div>
my controller look like below..nothing fancy I am trying to use angular + kendo ui on mobile.
(function () {
'use strict';
angular.module('app')
.controller('BaseData',[welcome]);
function welcome() {
var vm = this;
vm.activate = activate;
activate();
function activate() {
vm.computers=[
{name: "Macbook Pro", id:1},
{name: "Macbook Air", id: 2},
{name: "Mac Pro", id: 3}
]
}
}
})();
thanks
Manish