Skip to content Skip to sidebar Skip to footer

Does Anyone Have Or Know Of Any Example Of A Custom Popup Editor For Tabulator?

We are seeking a working example of a popup editor (ideally textarea) using Tabulator. Does anyone have or know of one of a working example? The Tabulator folks say this is up to t

Solution 1:

Tabulator is only built to display tables, it does not create an elements outside of the table itself.

If you want to use modals or popups then i would suggest choosing a 3rd party modal library that works for your needs and trigger it from an event in Tabulator.

If you want it to act as an editor then i would suggest triggering the modal on the cellClick or RowClick events.

These events get pass in a Component Object representing the cell or row that has been clicked. you can then call functions on these objects to change any updated data in the table

Post a Comment for "Does Anyone Have Or Know Of Any Example Of A Custom Popup Editor For Tabulator?"