Hello to all.
In the canvas app I'm trying to create, I have three buttons, and I want those buttons' border thickness changed according to the variable value applied to each button.
for example, Onselect property of ButtonA is...
Set(VariableA,1);
and Borderthickness property is...
If(VariableA=1,5,0)
Same in ButtonB,C, with VariableB,C.
When I select ButtonA, the borderthickness which suppose to be 5 doesn't make any change, however, when I click somewhere else on the screen (blank area of the app screen, I mean), the border of thickness 5 appears around the ButtonA.
Since clicking ButtonA after changing Onselect property into...
Set(VariableA,0);
the border disappears without clicking somewhere else, I thought it instantly change thickness without selecting(clicking) somewhere else... but is this normal in any case?
I tried to google but couldn't get any info about this kind of situation, and I'm wondering if any of you know the reason or whether this is usual in the PowerApps or if something is wrong with my coding.
Thanks in advance for your help!
(Sorry if this post is difficult to read... I'm not good at an explanation...)