Hello
I´m creating an App that has 7 views, each view has this kind of structure:
The last view is this:
I want to bring all the information from the different fields, but they are not in a EditForm, I put all of them in the normal way.
What I want to do is bring the information of each field and send it to the Sharepoint list only using the Finalizar button. Is there any option?
Thanks.
The application is a system to make appointments, bring the information from 2 sharepoint lists. And it should send the information to a new list called FumigApp.
In this view you must search for the client, then when you add the client, the next fields are bringing the information automatically from the same list of sharepoint.
I have one question, in the second step:
Do I have to connect to the list where I want to upload the information from the views?
Thank you,
Omar E.
Actually, the EditForm would be the normal way. What you are doing is breaking out all the interface parts to custom user elements.
My recommendation would be that you use the EditForm to be able to submit the data on the Finalizar button.
Here is how to go about it...
1) Create a new screen in your app. This screen does not ever need to be visible to the user.
2) Insert an EditForm (let's call it frmData) on that screen and connect it to your datasource. Set the DefaultMode to New
3) Unlock the datacards in the form and change the input controls to reference your custom controls in the rest of the app. Example, if you have a TextInput control in the datacard for Ingrediente Activo then change the Default property on that control to : theTextInputControlOnFirstScreen.Text
Repeat this for all the rest of the controls where you are changing the Default properties of all the controls in the form from Parent.Default to the name of the control in your app for that field.
Finally, on the Finalizar button OnSelect - use the following function SubmitForm(frmData)
You have not mentioned that this app will allow editing of existing records, so I am assuming this is an enter-and-go type app that does not allow editing. If so, then also add this formula to the OnSuccess action of frmData : NewForm(frmData)
This will give you the robust features of the EditForm while allowing you to separate the interface from the Form (i.e. custom controls that you have).
I hope this is helpful for you.
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473