When a user creates a new report in the designer, you can automatically register data for it through the onCreateReport event.

Handle the create-report event.
designer = StiDesigner()

# Register data for every newly created report
designer.onCreateReport += 'createReport'
designer.options.appearance.fullScreenMode = True

if designer.processRequest(request):
    return designer.getFrameworkResponse()

How it works. Every new report begins with data already registered, so users can drag fields immediately without configuring a connection.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.