Skip to content

Sometimes it is useful to display extra information in a detail view. A good place could be the footer of the form. Here is a simple function for adding custom content.

Code

1
2
3
// file: hooks/TABLENAME-dv.js
var f1 = dv.addFooter();
f1.append("Hello <b>bold</b> world");

Result

Tip

Use AJAX for requesting data from serverside. Then use the AJAX-response and add some extra information using our addFooter function.

See also