How to redirect to other form by clicking a button?

Hi there,

Just so others can benefit, I’ll give a more detailed answer to your main question.

You can set the button’s “click” event in the properties panel to open a new form. If we associate the click event to a function called, for example, “button_click”, then in our client-side code we can write:

def button_click(self, **event_args):
    open_form('my_form')

There are many examples of this in the forum, and in particular the multi-page app questions and tutorials give more details:

2 Likes