I had created a simple embed user task form having multiple tabs. In one tab i have added 3 input box and tables , once user fill the details and add it will be added to the table . My issue is my $scope couldn’t have access to these variables. I am attaching my forms along with this. testtab.txt is the parent html.
the ng-include directive creates a new isolated scope, so that the Camunda forms SDK can not discover what goes on in there. Therefore it can not automatically extract the variable and its value from the input when its part of the ng-include.
The good news is, that when submitting the form, you can still add the variable manually, like this:
Thanks for your reply
Your code seems to be executed on form submit. I dont want this in form submit. I have a button named “Add” . When user click on add button entry will be added to a grid. Like wise user can add n number of details.