In my practice, I use lastest version(v2012.3.1114),
In ListView widget, I use "loadMore=true", so the loadMore button show in the bottom of the list.
It was implemented with below code in Kendo Mobile
###################################
if (loadMore) {
that._loadButton = $('<button class="km-load km-button">' + options.loadMoreText + '</button>')
.click(function() {
that.loading = true;
that._toggleButton(false);
that.dataSource.next();
});
loadWrapper.append(that._loadButton);
}
#############################
It work fine on PC , but it works bad when i test on Android mobile( I force my app show in "ios" platform style).
It gives reaction only if click on it continuously.
I test on other conditions like :
########################################
<a class="tabButton" >Test link</a>
.............
$("a.tabButton").on("doclick", funtionName);
########################################
It turns out the same as "loadMore" button.
WHo can help me on this issue?
In ListView widget, I use "loadMore=true", so the loadMore button show in the bottom of the list.
It was implemented with below code in Kendo Mobile
###################################
if (loadMore) {
that._loadButton = $('<button class="km-load km-button">' + options.loadMoreText + '</button>')
.click(function() {
that.loading = true;
that._toggleButton(false);
that.dataSource.next();
});
loadWrapper.append(that._loadButton);
}
#############################
It work fine on PC , but it works bad when i test on Android mobile( I force my app show in "ios" platform style).
It gives reaction only if click on it continuously.
I test on other conditions like :
########################################
<a class="tabButton" >Test link</a>
.............
$("a.tabButton").on("doclick", funtionName);
########################################
It turns out the same as "loadMore" button.
WHo can help me on this issue?