Issue with Vertical ScrollBar
Issue with Vertical ScrollBar
donaldgoff
Posts: 2Questions: 0Answers: 0
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