Jquery モバイル UI listView を使用しています。
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="a">
<li>
<a href="Area.aspx">Area</a>
</li>
</div>
「Area.aspx」ページには、Kendo UI グリッドがあります。
<div id="example" class="k-content">
<div id="clientsDb">
<div id="grid" style="height: 380px"></div>
</div>
<style scoped>
#clientsDb {
width: 692px;
height: 413px;
margin: 30px auto;
padding: 51px 4px 0 4px;
background: url('web/grid/clientsDb.png') no-repeat 0 0;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
$("#grid").kendoGrid({
dataSource: {
data: createRandomData(50),
pageSize: 10
},
groupable: true,
sortable: true,
pageable: {
refresh: true,
pageSizes: true
},
columns: [{
field: "FirstName",
width: 90,
title: "First Name"
}, {
field: "LastName",
width: 90,
title: "Last Name"
}, {
width: 100,
field: "City"
}, {
field: "Title"
}, {
field: "BirthDate",
title: "Birth Date",
template: '#= kendo.toString(BirthDate,"dd MMMM yyyy") #'
}, {
width: 50,
field: "Age"
}
]
});
});
</script>
</div>
私の問題は、リンクをクリックするとエリアページがナビゲートされないことです。Jquery の読み込みイメージが表示されたままになっています。