This is a migrated thread and some comments may be shown as answers.

[Solved] kendo-drop-down-list not working with Kendo.mobile.min.js

1 Answer 312 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Manish
Top achievements
Rank 1
Manish asked on 04 Nov 2014, 05:40 PM
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

1 Answer, 1 is accepted

Sort by
0
Petyo
Telerik team
answered on 06 Nov 2014, 12:07 PM
Hello Manish,

the Kendo UI dropdown list is not part of the mobile bundle. in case you need it, you should use either kendo.all.min.js, or build a custom bundle

Regards,
Petyo
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
DropDownList
Asked by
Manish
Top achievements
Rank 1
Answers by
Petyo
Telerik team
Share this question
or