How to show a message in the table when the button is pressed
How to show a message in the table when the button is pressed
I saw documentation earlier about a method on the table object that would allow me to display a message on the table. It had parameters for the message title, text and duration that the message should stay on the screen. I had used it to display a message to the user once they pressed the CSV export button, by customizing the action for this button. Unfortunately, I erased that code and now I can't find any reference to this method anywhere in the documentation. Does someone know the link to this method? It was the call was something like table.something.something(titleText, messageText, durationms).
This question has an accepted answers - jump to answer
Answers
You are probably looking fo this:
https://datatables.net/reference/api/buttons.info()
Thank you!