Hi Experts,
I'm building my first app and learnt so many things from this community. Thanks for sharing your knowledge. Now, I'm stuck with a few things that I'm trying to achieve.
Background - I've tabs called General, Details, Info. Each tab has one container with a form data from SP list. Details tab has conditions in visibility property. Based on the value of a field in General tab, it shows the container with form. Last tab has a submit button.
Issues:
1. On moving to Details tab, i should validate the fields in General tab and only if no errors it should move to next tab, else notify user and stay in the same tab.
2. Get the current form and check if its valid. If all the forms are valid, submit the data.
3. Have attachments in each tab. Collect all the attachments from each tab and submit to have all attachments for a single record.
Trials:
1. Tried creating a update context variable and setting the current tab. This is working. But when I click on the second tab, it allows to click but shows the first tab container. I dont want it to click any other tab itself.
2. Tried creating a new variable current form and setting the form name for each condition. But its not working
3. Tried collecting each forms data to a variable. But not sure how to collect all the attachments data together.
Pls suggest.