I am using the data Table library to show a table with pagination and scroll bar enabled in my android device. The scrolling works fine when tested on desktop web browser. But if I test it on my android device (using phonegap and jquery mobile) the scrolling doesn't work. Below is the code. Any pointers is highly appreciable.
<code>
<head>
<script type="text/javascript" charset="utf-8"
src="lib/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" charset="utf-8"
src="lib/js/jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8"
src="js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery.dataTables.css" />
</head>
<body>
<div data-role="page" id="TaskListPage">
<script type="text/javascript">
var otable;
function decorateTable(){
otable = $('#demo').dataTable( {
"sScrollY": "350",
"bAutoWidth": true,
"sScrollX": "100%",
"bProcessing": true,
"bPaginate": true,
"bFilter": false
} );
}
//$("#demo tbody tr").click( function (e) {
// var rowData = otable.fnGetData( this );
// alert( 'The row\'s first cell clicked on had the value of '+rowData[0] );
// } );
$(document).on('pageinit','[data-role=page]',function(){
decorateTable();
} );
</script>
<div data-role="content" id="TaskListContent">
<table id="demo">
<thead>
<tr>
<th>Client<br>Name</th>
<th>Desc</th>
<th>Date <br>Recd.</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>12234</td>
<td>test</td>
<td>12-09-2011</td>
<td>New</td>
</tr>
<tr>
<td>34543</td>
<td>abcd</td>
<td>12-09-2012</td>
<td>In Process</td>
</tr>
</tbody>
</table>
</div>
</code>
<code>
<head>
<script type="text/javascript" charset="utf-8"
src="lib/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" charset="utf-8"
src="lib/js/jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8"
src="js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery.dataTables.css" />
</head>
<body>
<div data-role="page" id="TaskListPage">
<script type="text/javascript">
var otable;
function decorateTable(){
otable = $('#demo').dataTable( {
"sScrollY": "350",
"bAutoWidth": true,
"sScrollX": "100%",
"bProcessing": true,
"bPaginate": true,
"bFilter": false
} );
}
//$("#demo tbody tr").click( function (e) {
// var rowData = otable.fnGetData( this );
// alert( 'The row\'s first cell clicked on had the value of '+rowData[0] );
// } );
$(document).on('pageinit','[data-role=page]',function(){
decorateTable();
} );
</script>
<div data-role="content" id="TaskListContent">
<table id="demo">
<thead>
<tr>
<th>Client<br>Name</th>
<th>Desc</th>
<th>Date <br>Recd.</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>12234</td>
<td>test</td>
<td>12-09-2011</td>
<td>New</td>
</tr>
<tr>
<td>34543</td>
<td>abcd</td>
<td>12-09-2012</td>
<td>In Process</td>
</tr>
</tbody>
</table>
</div>
</code>