Clone forms(Tab) #7037
Unanswered
juliermefelix
asked this question in
Help
Replies: 2 comments
-
@patriciozeus please do not share any contact information in discussions. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Can anyone help? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a registration system where the dialog has two forms (two tabs) one for filling in personal data and another for profile, I need to create a button to add another profile form, this new form has to appear in another tab, the new one tab can be a clone of the previous one.
I tried using the code below, but it clones the entire dialog and that's not what I need. I only need the clone of the Profile forms.
protected updateInterface() {
super.updateInterface();
this.cloneButton.toggle(this.isEditMode());
}
Beta Was this translation helpful? Give feedback.
All reactions