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

Web SQL support in Kendo Mobile UI

4 Answers 105 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 14 Nov 2013, 08:44 AM
Hi
I'm trying to use web SQL databases with kendo mobile datasources. My code is based on a Kendo Web example that works fine but there is no way to make it works on mobile version. It doesn't trhow any exception but it doesn't works. Anyone has do it? I attached my code.
Thanks

4 Answers, 1 is accepted

Sort by
0
David
Top achievements
Rank 1
answered on 14 Nov 2013, 08:46 AM
Sorry, I had forgotten the file.
0
Petyo
Telerik team
answered on 15 Nov 2013, 12:20 PM
Hello David,

the listview endless scrolling mode has certain requirements about the way the datasource is configured (server paging, total setting, etc). Removing this configuration option will enable your example to work as expected

Regards,
Petyo
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
David
Top achievements
Rank 1
answered on 03 Dec 2013, 12:18 PM
Hi, I tried the same code, but using Scrollview and It doesn't works.
This is my example: http://jsbin.com/uGuzuRIc/2/edit
I wan't to read directly from my websql bd, and i wan't to make it paged because the real example have more than 1000 items with images.

Thanks
0
Alexander Valchev
Telerik team
answered on 05 Dec 2013, 10:16 AM
Hello David,

I updated your example:
Changes which I did are:
  • upgraded to latest official build as the release which you were using is outdated;
  • removed all the data attributes attached to the ScrollView element in order to avoid double initialization;
  • updated ScrollView settings used to build the widget inside the init event handler
    $("#scrollview1").kendoMobileScrollView({
        dataSource: dataSource,
        template: $("#pull-with-endless-template").text(),
        contentHeight: "100%",
        enablePager: false
    });
  • added data-stretch="true" to the view in order to expand the ScrollView content.

I hope this information will help.

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