Hello,
I have a button on my form and I would like to disable this button based on a certain value of the field.
the field is a single line of text field. If the value of this field is "Yes", then the submit button should be disabled. I tried various options with display mode on Form OnVisble property but nothing is working.
Please help
I tried the following on DisplayMode property of the button but it didn't work
If(DataCardValue19.Text = "Yes", DisplayMode.Disabled, DisplayMode.Edit) Not sure what I am doing wrong. Can I use Button Rules instead?
Hi @cooltechie
Share a screenshot
also check DataCardValue19.Text value by using a Label and setting its tet property to DataCardValue19.Text
the label also is not showing the text value.
Are you sure DataCardValue19 is the name of the input control and can you provide a screenshot?
Hi @cooltechie ,
Do you custom a form in your SP list using PowerApps?
Do you want to disable the Button based on a certain value of the field when you edit an existing record?
I have made a test on my side, please consider take a try with the following workaround:
Set the DisplayMode property of the Button to following:
If( SharePointIntegration.Selected.TextField = "Yes", DisplayMode.Disabled, DisplayMode.Edit )
or
If( DataCardValue19.Text = "Yes", DisplayMode.Disabled, DisplayMode.Edit )
Note: Please make sure the DataCardValue19 represents the Text Input box related to the Single text column of your SP list within your Edit form (SharePointForm1).
Best regards,
I tried this approach. However, the problem with this is that the button is disabled even when the form is opened new and the value of the text field is blank. How can we solve this?
Thank you. This solution works for me.
User | Count |
---|---|
164 | |
96 | |
78 | |
73 | |
59 |
User | Count |
---|---|
209 | |
167 | |
98 | |
93 | |
79 |