Hi
I have a blue Button (for Submit Form) which is disabled when certain conditions aren't met; this disablement turns it from blue to grey.
I have a relevent icon sitting on this button but I'd like to match its colour at any particular time to that of the Button.
I've tried some Ifs but my formula game isn't great. Any ideas?
Thanks.
Solved! Go to Solution.
Thanks for all the suggestions! I was able to use these to create an IF statement to control the colour. In my Icon's Colour I tried:
If(Button1.DisplayMode = "disabled",Button1.DisabledBorderColor, Button1.Color)
Thanks again.
You can make the icon match the background color of the button by changing. Change these properties in your icon to the following code below.
Color: Button1.Fill Fill: Button1.Fill
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."
Hi @KieranJM ,
Do you want to link the Icon color to the Button Color?
I have made a test on my side, please take a try with the following workaround:
Set the Color property of the Icon to following formula:
Button1.Fill /* <-- Bind it to Button's Fill proeprty */
In addition, you could also consider control the Color property of the Icon using same formula logic that you used to control your Button's Fill property.
If you want to bind the Color property of the Icon to Button's Color property, please use the following formula:
Button1.Color
Best regards,
Icon.Color --> The color of the "symbol"
Icon. Fill --> the background color of the icon
Button.Color --> the font color of the button
Button.Fill --> the background color of the button
Thanks for all the suggestions! I was able to use these to create an IF statement to control the colour. In my Icon's Colour I tried:
If(Button1.DisplayMode = "disabled",Button1.DisabledBorderColor, Button1.Color)
Thanks again.
User | Count |
---|---|
188 | |
127 | |
88 | |
47 | |
42 |
User | Count |
---|---|
278 | |
163 | |
134 | |
81 | |
78 |