kendo-mobile

Kendo UI dropdownlist mobile scrolling

不打扰是莪最后的温柔 提交于 2020-01-25 18:08:18
问题 I am currently developing an application using Kendo UI. I use a dropdownlist like this Kendo UI dropdownlist On the browser it work's fine. I can open the list an scroll with the mousewheel, but when I try to use it on a device with touch (tablet or smartphone) i cannot scroll in the dropdownlist. How can i add a listener or something else on the dropdownlist, that this makes it possible to scroll? 回答1: From here: Kendo Support Forum - Unable to scroll on iPad To enable scrolling of the

How to connect to the server on mobile application?

不想你离开。 提交于 2019-12-31 22:28:10
问题 I am new to mobile applications. I am basically from a web development platform. I am just playing around mobile frameworks like App Framework, LungoJS, Jquery Mobile, kendo etc to gain some knowledge in this vertical. The app I am developing is still in UI level. All I need is to fetch data from the server and populate in my app. I need some ideas to establish server communication between the smart device and the server. My questions are What kind of server needed for mobile applications ? A

Mapping XML child elements to a Kendo UI DataSource

孤街醉人 提交于 2019-12-24 22:40:19
问题 I'm struggling with mapping and displaying a list of child elements on a XML datasource, using Kendo UI Mobile. Consider the following straightforward XML structure: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topics> <topic id="1" title="Weather"> <header>Great weather today!</header> <smallicon>foo_bar.png</smallicon> <items> <item>It's great weather</item> <item>Sunny feeling</item> <item>Raining like a dog</item> </items> </topic> <topic id="2" title="Politics"> <header>Left

KendoUI in angular.js - how to update multiple pointers value

橙三吉。 提交于 2019-12-12 02:08:58
问题 I'm trying to use kendo-radialgauge of " kendo.directives " with two pointers but my problem is to update the both pointers from controller. How can I do it ? Two pointers in UI <span kendo-radialgauge k-options="options" k-ng-model="menuOptions" ></span> angular.module("app", ["kendo.directives"]) 回答1: I don't know kendo but I found this: http://docs.telerik.com/kendo-ui/AngularJS/introduction#widget-update-upon-option-changes You can also read about controller-directive communication and

Kendo DataSource Transport.Destroy with function got called too much

断了今生、忘了曾经 提交于 2019-12-11 19:26:50
问题 I've got a strange problem using transport.destroy: I have a Listview with a swipe event to open the delete option. (like most apps) i did implement this: http://demos.kendoui.com/mobile/listview/editing.html#/ in my app. everything work fine, except destroy am listview item will be called for X+1 (x = deleted items) At first deletion it will be called once, at the 2nd time it will be called twice and so on. Here is the JSBin: http://jsbin.com/AGAGUfE/11/ You can see it within the console for

Kendo ui grid filed with editor, pop up won´t close

最后都变了- 提交于 2019-12-11 15:04:46
问题 I have a field on my kendo ui grid which uses an editor: columns:[{ field:"Nome", title: "Nome" },{ field: "idTipoQuarto", title:"Tipo de Quarto", editor: tipoQuartoEditor}, In my model i have: schema: { data: "data", total: function(response) { return $(response.data).length; }, model: { id: "idQuarto", fields: { idQuarto: { editable: false, nullable: true }, Nome: { validation: { required: true } }, idTipoQuarto: { validation: { required: true }} } } } And my editor function is: function

Using a kendo observable property in multiple viewModels

旧街凉风 提交于 2019-12-11 14:27:42
问题 In a Kendo app using the Kendo MVVM framework: I have a "global" viewModel which is information that is common to all parts of the app - e.g. the UserState, which has a property isLoggedIn. Many different Views and ViewModels access the userState object (from what I can see, 1 View is bound to 1 ViewModel in Kendo). For example, my home page might show the Login button if they are not authenticated. Then all the other screens behave differently once you are logged in, so each ViewModel needs

How to set the tree view node color for Kendo UI TreeView?

大憨熊 提交于 2019-12-11 10:08:29
问题 I want to set the tree view color based on the value defined in the datasource field, From this link, I think that what I am trying to do is possible, but I am not using MVVM, so in my case what I am missing below? any idea?? http://www.telerik.com/forums/mvvm---treeview-only-updates-on-datatextfield-change <div id="treeview"></div> $("#treeview").kendoTreeView({ template: "#= item.text # color:#: item.color #", dataSource: [ { text: "green", color: "green", items: [ { text: "yellow", color:

kendu ui datasource read event has null request

自作多情 提交于 2019-12-11 04:26:04
问题 I have an Kendo UI scheduler widget on mobile page, which as you can see has a datasource read event. $("#scheduler").kendoScheduler({ ... dataSource: { batch: true, transport: { read: { url: "http://mydomain.com/api/Schedule/Tasks_Read", dataType: "jsonp" }, ... }); When the read event is called it sends the request as http://mydomain.com/api/Schedule/Tasks_Read?callback=jQuery1910528280699858442_1396259085815&_=1396259085816 the problem is that when the webapi get method gets the request,

Kendo Mobile - Can not refresh listview on ModalView Close

时间秒杀一切 提交于 2019-12-11 01:27:00
问题 I can not refresh the listview when a dialog which add's or deletes rows from this listview is closes. I tried several things. but the following does not work function closeModalViewRemove() { $("#modalview-app-remove").kendoMobileModalView("close"); //--- this is not working -- start --- refreshAppList(); //--- this is not working -- finish --- }; function refreshAppList() { var applist = $('#applist').data('kendoMobileListView'); applist.dataSource.read(); applist.refresh(); } what am I