Add a + to indicate all revisions are not loaded in history view
This commit is contained in:
parent
184a47185c
commit
631dc03f38
|
@ -88,7 +88,8 @@ def history_data(name):
|
|||
'draw': draw,
|
||||
'recordsTotal': total_records,
|
||||
'recordsFiltered': total_records,
|
||||
'data': items
|
||||
'data': items,
|
||||
'fully_loaded': hist_complete
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -45,7 +45,13 @@
|
|||
|
||||
$('.dataTable').dataTable({
|
||||
serverSide: true,
|
||||
ajax: '{{ url_for('.history_data', name=name) }}',
|
||||
ajax: {
|
||||
url: '{{ url_for('.history_data', name=name) }}',
|
||||
dataSrc: function (data) {
|
||||
$('.dataTable').data('fully_loaded', data.fully_loaded);
|
||||
return data.data
|
||||
}
|
||||
},
|
||||
ordering: false,
|
||||
bFilter: false,
|
||||
columns: [
|
||||
|
@ -64,6 +70,12 @@
|
|||
if ( $.inArray(data.DT_RowId, selected) !== -1 ) {
|
||||
$(row).addClass('active');
|
||||
}
|
||||
},
|
||||
infoCallback: function( settings, start, end, max, total, pre ) {
|
||||
if (!$('.dataTable').data('fully_loaded')) {
|
||||
total += "+"
|
||||
}
|
||||
return "Showing " + start +" to "+ end + " of " + total + " revisions.";
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue