I have a DataTables table, and I want to put a title on the table to the left of the search box, like this:
I've tried a few things from Goog and the docs, such as floating an element above the table and caption, which don't look great and look even worse when styling is applied.
Looking through the elements, there seems to be a space already there and available for a title, but I don't know how to access it:
How can I add a title to a DataTables table so it's inline and to the left of the search area.


A possible solution could be to modify the structure of the dom.
You can add for example a div with a class name in your table config
and once the table is fully created you can insert some text using jquery
I hope I was helpful