Issue with Vertical ScrollBar
Issue with Vertical ScrollBar
![donaldgoff](https://secure.gravatar.com/avatar/1c6361db552bc39be6d81abfdc24a471/?default=https%3A%2F%2Fvanillicon.com%2F1c6361db552bc39be6d81abfdc24a471_200.png&rating=g&size=120)
I have added a DataTable to my mobile application, however I can't seem to get the Vertical ScrollBar working in Opera Mobile 10 Touch (Windows Mobile). Scroll bar appears and works as expected with the PC based version of Opera.
Code Below:
// Format the Table
$(document).ready(function() {
$('#ItemList').dataTable(
{
"sScrollY": "45px",
"bPaginate": false,
"bFilter": false,
"bInfo": false,
"aoColumnDefs": [
{ "bVisible": true, "sTitle": "LOC", "aTargets": [ 0 ] },
{ "bVisible": true, "sTitle": "QTY", "aTargets": [ 1 ] },
{ "bVisible": true, "sTitle": "UOM", "aTargets": [ 2 ] }
]
});
Code Below:
// Format the Table
$(document).ready(function() {
$('#ItemList').dataTable(
{
"sScrollY": "45px",
"bPaginate": false,
"bFilter": false,
"bInfo": false,
"aoColumnDefs": [
{ "bVisible": true, "sTitle": "LOC", "aTargets": [ 0 ] },
{ "bVisible": true, "sTitle": "QTY", "aTargets": [ 1 ] },
{ "bVisible": true, "sTitle": "UOM", "aTargets": [ 2 ] }
]
});
This discussion has been closed.
Replies