allow user to execute some action after data is loaded e.g. ``` setData: function(data, afterLoad) { if (data) { this.clear(); data.forEach(entry => { this.addRow(entry); }); if (typeof afterLoad == 'function') afterLoad(); } } ```