Fix tooltips in datatables and add events to datatables init and draw actions

This commit is contained in:
Stephen Abello
2021-02-22 09:51:12 +01:00
parent f61ec3179a
commit da77439e1e
3 changed files with 20 additions and 5 deletions

View File

@@ -46,5 +46,11 @@ $('#{{ oUIBlock.GetId() }}').DataTable({
sortable: true
},
{% endfor %}
]
],
initComplete: function () {
$('#{{ oUIBlock.GetId() }}').trigger('inited');
},
drawCallback: function(){
$('#{{ oUIBlock.GetId() }}').trigger('drawn');
}
});