
Announcements
Hi,
I have been facing an issue with my app getting stuck on "Getting your data" whenever I try to run it and couldn't find a solution to work it out.
I am trying to create a mobile app to fill out a form which is then linked to my SharePoint list so I can read all the submissions on it.
I have three screens, the first is just an intro with a logo and a button to navigate to the second screen which is the form. Inside the form I built a 'submit' button that will submit the form and navigate to the success screen.
Whenever I run the app, the first screen pops up normally and works but when I navigate to the form it just gets stuck on "getting your data". I have tried the two default modes between Edit and New but none of them fix the issue. The item property of the form is empty however and I'm not sure what I should put in it.
Would appreciate any help to get it solved.
Thanks.
@SamyHakim On the button of the first screen, just before you say "Navigate(....)" you should call NewForm(nameofYourForm). So it would look something like
NewForm(yourFormName);
Navigate(yourScreenName)
When you use the form only as a NewForm you do not need to have something in the Items-Property. This is only relevant if you use it also as an edit form.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.