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 ?
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 ?
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...
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("");
}
});
Hi Shawn,
Could you please clarify, do you need to pass service data to Kendo component? Do you have any specific problem with it?
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.
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.