bootstrapTable Events
bootstrapTable Events
$('#dataTable').bootstrapTable({
onEventName : function(){...}
....
});
//For example:
$('#dataTable').bootstrapTable({
onPageChange: function () {
calculation();
},
onPostBody: function () {
calculation();
}
});