Title on Page (next to commands)

I figured out how in a Dialog Options to set the title of a page (next to the command buttons), but how can I do this on a form?

Hello @sphilson,

You can use jQuery .append() method to add Title to the Toolbar.
For instance:

$( ".fd-toolbar-primary-commands" ).append( "<div>New Title</div>" );

Please find more information about the method here.