Shawn Johnson
Posts: 0
Joined: Wed Jan 15, 2014 4:17 pm

Is it possible to replace jQuery Mobile with Kendo UI

I have been playing around with Kendo UI, and some of the UI components. I was wondering if it was possoble to replace jQuery Mobile with Kendo UI, with an appery project ?

Evgene Karachevtsev
Posts: 12
Joined: Mon Apr 28, 2014 1:12 pm

Is it possible to replace jQuery Mobile with Kendo UI

Hello Shawn,

You may try to delete JQM in Source tab and add code you need like custom JS and CSS: http://devcenter.appery.io/documentat...
http://devcenter.appery.io/documentat...

Shawn Johnson
Posts: 0
Joined: Wed Jan 15, 2014 4:17 pm

Is it possible to replace jQuery Mobile with Kendo UI

Evgene,

how would you manage items like data binding with regards to Kendo components
appery data services

for instance here is a kendo ui list view declaration

Code: Select all

  ul/ul 

here is the datasource example

var addProductDataSource = new kendo.data.DataSource({
transport: {
create: {
url: "http://demos.telerik.com/kendo-ui/ser...",
dataType: "jsonp"
},
parameterMap: function (options, operation) {
if (operation !== "read" && options.models) {
return { models: kendo.stringify(options.models) };
}
}
},
schema: {
model: {
id: "ProductID",
fields: {
ProductID: { editable: false, nullable: true },
ProductName: { type: "string" }
}
}
},
autoSync: true,
batch: true,
requestEnd: function () {
$("#name").val("");
}
});

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Is it possible to replace jQuery Mobile with Kendo UI

Hi Shawn,

Could you please clarify, do you need to pass service data to Kendo component? Do you have any specific problem with it?

Shawn Johnson
Posts: 0
Joined: Wed Jan 15, 2014 4:17 pm

Is it possible to replace jQuery Mobile with Kendo UI

Katya,

I was asking in general, how to map the response form the appery service to the Kendo UI component that is expecting a model, I played with a few of the Kendo UI demos and got it to work.

I was thinking it would be awesome if you can could create custom visual components to be use in appery's UI designer. You can create new front end elements to make different UI's experiences.

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

Is it possible to replace jQuery Mobile with Kendo UI

Hi Shawn.

Unfortunatly, currently Appery.io code generating works only with jqm components.

But if you need you can add service onsuccess event handler and generate HTML which is kendo.ui requires and then init this HTML code with kendo.ui component.

Regards.

Return to “Issues”