adding a div next to the list page table

I’d like to add a div next to the list page table, same width of the table, with responsive behaviour.
For bootstrap, I think the html code should be something similar to:

...
(this the standard table div)
...
(this my new div)
but I don't know if it is possible to add the "row" divs and how to alter the class tags, have you some idea? Thank you

Please try Custom Templates. You may read about it from PHPMaker Help menu for more info.

ppp wrote:

...
(this the standard table div)
...
(this my new div)

You may also use jQuery in Startup Script (see Server Events and Client Scripts in the help file), see: https://api.jquery.com/after/, e.g.

$(".ewGrid.col-md-6").after(" <div class='col-md-6'>...</div>");