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)
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:
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>");