Hey guys,
So I have 3 tables. Table 1 is a view that is being used in the browse screen. Table 2 and table 3 are the tables i'm using in the addscreen but only need to input selected data(from table 2 &3) into table 2 ONLY. I just need 2 selections from table 3. Below are screenshoots. Also, when i press play the botton, i dont see either of the forms on the add screen.
Table 3 is the bottom selected section by the way.
Please help.
Solved! Go to Solution.
Hi @Anonymous ,
Based on the issue that you mentioned, I think this issue is related to the DefaultMode property of the Edit form.
Please set the DefaultMode property of your Table2 form and your Table3 form to following:
FormMode.New
In addition, you could also consider take a try with the following workarund:
Set the OnSelect property of the "Navigate" button (click it to navigate to your AddScreen) in your Browse screen to following:
NewForm(Table3Form);
NewForm(Table2Form);
Navigate(AddScreen, ScreenTransition.None)
Best regards,
Hi @Anonymous ,
Based on the issue that you mentioned, I think this issue is related to the DefaultMode property of the Edit form.
Please set the DefaultMode property of your Table2 form and your Table3 form to following:
FormMode.New
In addition, you could also consider take a try with the following workarund:
Set the OnSelect property of the "Navigate" button (click it to navigate to your AddScreen) in your Browse screen to following:
NewForm(Table3Form);
NewForm(Table2Form);
Navigate(AddScreen, ScreenTransition.None)
Best regards,
User | Count |
---|---|
252 | |
251 | |
83 | |
45 | |
29 |
User | Count |
---|---|
340 | |
263 | |
130 | |
64 | |
56 |