I have a main view and a modal window which is a child view from the parent view.
The modal consist of a form which is submitted via ajax.
How do I render the parent view from the child view after submitting the form?
|
I have a main view and a modal window which is a child view from the parent view. The modal consist of a form which is submitted via ajax. How do I render the parent view from the child view after submitting the form? |
|||
|
|
|
The parent view can bind to notifications on the child view to know when the form was submitted. Then it can render itself: On the parent view:
On the child view:
The child will trigger a "formSubmitted" event and the parent's render function will be called. |
|||||
|