I am using jQuery Datatables plugin for a smal table (12 rows). Some <input type="text" ...
fields allow editing. When the input field loses focus I need to validate its value and possibly change the field value. I haven't been able to get modified input field values to be recognized by DataTables without issuing a .draw()
afterwards, but this causes the table to scroll to the top of the table.
Is there a way of maintaining the current scroll position after issuing a .draw()?
$('#mytable').on('blur', 'input', function (e) {
var inputFieldId = this.id;
var inputFieldVal = $(this).val();
{ ... perform validation of field value ... }
$('#mytable').DataTable().rows().invalidate().draw();
});
EDIT
I saw someone trying to do the same thing I am and they indicated that the following code worked for them. This seems like a very simple way of accomplishing what I need, but I'm always getting scrollTop = 0 myself. Anyone see how I can get the row index of the currently selected row?
var scrollPos = $(".dataTables_scrollBody").scrollTop();
$('#mytable').DataTable().rows().invalidate().draw(false);
$(".dataTables_scrollBody").scrollTop(scrollPos);
var table = $('table#example').DataTable({
"preDrawCallback": function (settings) {
pageScrollPos = $('div.dataTables_scrollBody').scrollTop();
},
"drawCallback": function (settings) {
$('div.dataTables_scrollBody').scrollTop(pageScrollPos);
}
});
This appears to work for me. I just had to find the div.dataTables_scrollBody
after the table was drawn.
Just wanted to add this here though it's a slightly different scenario - It worked for my case and will likely be useful to some others who arrive here looking for answers.
I'm using server side processing and doing a refresh of table data once every 10 seconds with table.ajax.reload()
. This function does accept an argument to maintain current paging value but fails to keep scroll position. The solution was very similar to the one the OP mentioned and sets the scroll position on the callback. Not sure why it didn't work for him but here's the interval code I'm using with success:
setInterval( function () {
scrollPos = $(".dataTables_scrollBody").scrollTop();
myTable.ajax.reload(function() {
$(".dataTables_scrollBody").scrollTop(scrollPos);
},false);
}, 10000 );
The way I solved it with DataTables 1.10 is to use preDrawCallBack to save the ScrollTop position and then DrawCallback to set it.
var pageScrollPos = 0;
var table = $('#example').DataTable({
"preDrawCallback": function (settings) {
pageScrollPos = $('body').scrollTop();
},
"drawCallback": function (settings) {
$('body').scrollTop(pageScrollPos);
}
});
If you pass the draw function the page
parameter, the table will not shift in scrolling, but it will re-read from the .DataTable
source. E.g. after "saving" data that updates the DataTable:
$("your-selector").DataTable().row(t_itemid).invalidate();
$("your-selector").DataTable().row(t_itemid).draw('page');
Note: I am making use of an id
column in my DataTable instantiation which makes it easy to work directly with a single row. But I believe the page
parameter will give the desired result.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With