Editing a Report Template in the Designer in an HTML template
Our sample projects and report templates can help you learn the basics of working with our products.As with the viewer, the designer's scripts and body can be emitted separately to fit your own HTML layout.
Designer setup. Configure the designer, load the report template, process its callbacks, and connect the save action to the application.
Designer setup. Configure the designer, load the report template, process its callbacks, and connect the save action to the application.
<head>
<?php $designer->javascript->renderHtml(); ?>
</head>
<body>
<?php $designer->renderHtml(); ?>
</body>javascript->renderHtml()— prints the designer's scripts; place this in the<head>.renderHtml()— prints the designer element; place this in the<body>.
javascript->renderHtml() outputs the scripts for the head, and renderHtml() outputs the designer element for the body, so the designer integrates into any page structure.