I'm so much frustrated using kendo mobile... there's so many issues. I'm not sure whether I'm coding bad,,,,
Here's my another problem....
when listview (binds to remote datasource) reaches end, and user can click the detail button from the list to see more information.
It works fine when listview didn't reach end, but when it reaches end (using 'load more' button) and user clicks the detail button to see more information, I get
This error is generated when calling DataSource.fetch ...
any clue?
Here's my another problem....
when listview (binds to remote datasource) reaches end, and user can click the detail button from the list to see more information.
It works fine when listview didn't reach end, but when it reaches end (using 'load more' button) and user clicks the detail button to see more information, I get
Uncaught TypeError: undefined has no properties(anonymous function)b.isFunction.i jquery.min.js:3C.render kendo.mobile.min.js:12b.isFunction.i jquery.min.js:3y.extend._renderItems kendo.mobile.min.js:18y.extend.insertAt kendo.mobile.min.js:18y.extend.append kendo.mobile.min.js:18g.Class.extend.init kendo.mobile.min.js:18$.item kendo.mobile.min.js:18g.Observable.extend.refresh kendo.mobile.min.js:18(anonymous function) kendo.mobile.min.js:18i.extend.trigger kendo.mobile.min.js:12lt.Observable.extend._change kendo.mobile.min.js:15(anonymous function) kendo.mobile.min.js:15i.extend.trigger kendo.mobile.min.js:12ut.extend._process kendo.mobile.min.js:14ut.extend.success kendo.mobile.min.js:14b.isFunction.i jquery.min.js:3n.success kendo.mobile.min.js:14c jquery.min.js:3p.fireWith jquery.min.js:3k jquery.min.js:5r jquery.min.js:5This error is generated when calling DataSource.fetch ...
app.noteDetail = function(e){ var view = e.view, noteDetailTemplate = kendo.template($("#detailTemplate").text()); app.noteDS.fetch(function(){ //still causing issue to collapse listview var item = app.noteDS.get(view.params.id); view.scrollerContent.html(noteDetailTemplate(item)); kendo.bind(view.element, item, kendo.mobile.ui); }); };any clue?