Search code examples
javascriptmysqlsqlitekendo-uikendo-mobile

Updating a listview in Kendo UI Mobile from a remote databse


I am building an cross platform mobile app using Icenium in a very short period of time and as such I am trying to learn HTML5 and CSS in a very short period of time. I am using the Kendo UI Mobile framework to build the app and I need to link a load a list of events from a remote database and have that database populate a listview in the app.

The database can be anything as I have open access to the server and can put what ever I want on it. I literally don't know where to begin though, any help would be very good. ATM I was looking at a mySQL database as it was the easiest and most secure to maintain.

Any ideas / experience in this matter?


Solution

  • The database that you choose has nothing to do with your front end. You can use any DB like SQL Server, Oracle, MySQL(if you have budget constraints) etc. Your Kendo front end will not talk to your server DB directly; for that you need to write an HTTP service using .NET/Java/or any server side technology. Now this service will talk to your DB and return data (preferably in JSON format) to Kendo UI.

    Kendo UI <-> HTTP Services <-> DataBase[Independent of the UI]