Open KES777 opened 1 week ago
Describe the bug https://tabulator.info/docs/6.3/lifecycle#initialization
Tabulator Info
Working Example
<div id="customized-table"></div> <script> new Tabulator( '#customized-table', { tableBuilding: function(){ alert( 'sdfa' ) }, }); </script>
In previous versions I could write:
let opts = Tabulator.defaultOptions; opts.tableBuilding = initLookups;
And all my tables receive some initialization. But now in all places in the code I need to write:
let t = new Tabolator(...); t.on("tableBuilding", initLookups);
which is not convenient.
To Reproduce
Expected behavior I should see alert.
Screenshots
Desktop (please complete the following information):
Describe the bug https://tabulator.info/docs/6.3/lifecycle#initialization
Tabulator Info
Working Example
In previous versions I could write:
And all my tables receive some initialization. But now in all places in the code I need to write:
which is not convenient.
To Reproduce
Expected behavior I should see alert.
Screenshots
Desktop (please complete the following information):