Closed GoogleCodeExporter closed 9 years ago
Minor correction to the sample code above.
$(document).ready(function () {
var oTable;
var dtTimer = $.timer();
dtTimer.set({ action: function () { oTable.fnReloadAjax(); },
time: 55000 // 55 secs
}).play(); // start the timer
oTable = $('#myDataTable').dataTable()
.makeEditable({
oEditableSettings: {
onedit : function(i) { dtTimer.pause(); },
onreset: function(i) { dtTimer.play(true); }
},
fnOnEditing: function(i) { dtTimer.play(true); }
});
});
Original comment by deus...@gmail.com
on 4 Nov 2011 at 8:59
Hi,
This is not a standard request. I have never used timer and nobody til now
requested this feature. Also, this timer is not standard so I'm not including
third party plugins unless if they are absolutely necessary.
Can you show me some example that is widely used where this feature is
necessary? If this is something custom that it can be achieved using onEditing
and odEdited methods as you have shown.
Regards,
Jovan
Original comment by joc...@gmail.com
on 11 Nov 2011 at 9:33
Original comment by joc...@gmail.com
on 9 Feb 2012 at 9:52
Original issue reported on code.google.com by
deus...@gmail.com
on 3 Nov 2011 at 1:28