Scrolling Issue on IE with DataTables
Scrolling Issue on IE with DataTables
srini_attuluri
Posts: 8Questions: 0Answers: 0
Hi All,
I am facing an issue with scrolling on IE but others(browsers) are working as expected.
Actually this issue is... when I scroll down and select a row then the scrolling is going top(only on IE) and i have to scroll down and see the selected row.
Here below is the example code.
$(document).ready(function() {
$('#example').dataTable({
"sScrollY" : "117px"
});
$("#example tbody tr").live('click',function(){
$("#example").focus();
// row highlighting and Need to do other stuff.
});
} );
Can you please give me the suggestion , this is so urgent for me.
I am facing an issue with scrolling on IE but others(browsers) are working as expected.
Actually this issue is... when I scroll down and select a row then the scrolling is going top(only on IE) and i have to scroll down and see the selected row.
Here below is the example code.
$(document).ready(function() {
$('#example').dataTable({
"sScrollY" : "117px"
});
$("#example tbody tr").live('click',function(){
$("#example").focus();
// row highlighting and Need to do other stuff.
});
} );
Can you please give me the suggestion , this is so urgent for me.
This discussion has been closed.