Hi,
I need help with disabling gallery item selected button.
Scenario:
I am trying to capture audit response on different cases. So I have created four galleries as it can be seen on Page1. Each Gallary have its own screen on so for example if user select top left gallary and select first button it navigates to page 2 and fill the details which saves to different table in sql.
So when user hit "Submit Audit" on Page 2 and navigate back to Page1 then that selected "Start Audit" should become disabled.
Page1
Page2
Really appreciate the help here, please.
Solved! Go to Solution.
Hi @asif082 ,
Could you please share a bit more your data source to store the Audit records?
Do you want to disbale the "Start Audit" button within the Gallery in your Page1 when the corresponding Audit record has been saved into your different table?
I assume that there is column in your Audit records data source to store the Audit name, and the Audit name is a Primary column in your Audit records data source.
I have made a test on my side, please take a try with the following workaround:
Set the DisplayMode property of the "Start Audit" button within your Gallery (in Page1) to following:
If( ThisItem.AuditName in 'YourDifferentTable'.AuditColumn, DisplayMode.Disabled, DisplayMode.Edit )
Note: The AuditName column represents the column in your Audit records data source, which used to store the Audit name. The AuditColumn represents the column in your 'YourDifferentTable' to store the submitted Audit name.
Please take a try with above solution, check if the issue is solved.
Best regards,
Hey,
I think the best approach is to Set() a variable Disabled mode, when you hit the "Submit audit". And somewhere to change it to Edit/View when you need so you can assign this variable to the displayMode field of your button you want to disable.
Hope this helps.
Hi @asif082 ,
Could you please share a bit more your data source to store the Audit records?
Do you want to disbale the "Start Audit" button within the Gallery in your Page1 when the corresponding Audit record has been saved into your different table?
I assume that there is column in your Audit records data source to store the Audit name, and the Audit name is a Primary column in your Audit records data source.
I have made a test on my side, please take a try with the following workaround:
Set the DisplayMode property of the "Start Audit" button within your Gallery (in Page1) to following:
If( ThisItem.AuditName in 'YourDifferentTable'.AuditColumn, DisplayMode.Disabled, DisplayMode.Edit )
Note: The AuditName column represents the column in your Audit records data source, which used to store the Audit name. The AuditColumn represents the column in your 'YourDifferentTable' to store the submitted Audit name.
Please take a try with above solution, check if the issue is solved.
Best regards,
User | Count |
---|---|
142 | |
137 | |
78 | |
77 | |
73 |
User | Count |
---|---|
228 | |
177 | |
68 | |
68 | |
58 |