This question is locked. New answers and comments are not allowed.
Hej,
Firstly, In kendoui.trial.2012.3.1114\examples\mobile\listview\index.html sample page shows when the user click list item, list item turn to blue on press and when the user release to touch list item turn to normal. This is the normal state.
I apply the same .html file in Icenium Kendo UI framework project but listview item don't react any effect when i select the item on release the item. I don't understand wht is it like that? Is this problem about the kendo framework or the icenium IDE? I am not sure this is this question should be asked here. I already asked the same question on kendo forums.
On the other hand, the main purpose for my listview is have to fill from web service and i can fill the listview from web service but still the same problem i can't get the click effect on the selected listview item. Here is filling code for listview:
$.ajax({
type: "POST",
url: SERVICE_URL_GET_FIRM_LIST,
data: "{ firmID:" + firmID + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
beforeSend: function() {
app.showLoading();
},
success: function(msg) {
firmItems = JSON.parse(msg.d);
$("#firm-listview").kendoMobileListView({ dataSource: firmItems, template: $("#firmListViewTemplate").text() });
},
complete: function() {
app.hideLoading();
},
error: function(msg) {
app.hideLoading();
alert('Firma listesi alinirken hata olustu!...');
}
});
<script type="text/x-kendo-template" id="firmListViewTemplate">
<p>${Definition}</p><a data-role="detailbutton" data-style="detaildisclose"></a>
</script>
Kind Regards.
Firstly, In kendoui.trial.2012.3.1114\examples\mobile\listview\index.html sample page shows when the user click list item, list item turn to blue on press and when the user release to touch list item turn to normal. This is the normal state.
I apply the same .html file in Icenium Kendo UI framework project but listview item don't react any effect when i select the item on release the item. I don't understand wht is it like that? Is this problem about the kendo framework or the icenium IDE? I am not sure this is this question should be asked here. I already asked the same question on kendo forums.
On the other hand, the main purpose for my listview is have to fill from web service and i can fill the listview from web service but still the same problem i can't get the click effect on the selected listview item. Here is filling code for listview:
$.ajax({
type: "POST",
url: SERVICE_URL_GET_FIRM_LIST,
data: "{ firmID:" + firmID + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
beforeSend: function() {
app.showLoading();
},
success: function(msg) {
firmItems = JSON.parse(msg.d);
$("#firm-listview").kendoMobileListView({ dataSource: firmItems, template: $("#firmListViewTemplate").text() });
},
complete: function() {
app.hideLoading();
},
error: function(msg) {
app.hideLoading();
alert('Firma listesi alinirken hata olustu!...');
}
});
<script type="text/x-kendo-template" id="firmListViewTemplate">
<p>${Definition}</p><a data-role="detailbutton" data-style="detaildisclose"></a>
</script>
Kind Regards.