In my PowerApps I have few phone fields and FAX fields where users could enter data, right now it is defined in CDS and Phone data type, but I do not know how to walk through users to enter it nicely. my manager would like me to give users guided experience when they interact with the App GUI. so how could I display phone entry box with ( ) - , so that users could fill in the numbers in it?
PowerApps Canvas App with CDS - how to display phone entry box with ( ) - so that user entry could be guided?
72 views Asked by Raju Choudhari At
1
There are probably many ways to accomplish this in PowerApps. The below is not the most elegant.
OnChangeproperty to:Formatproperty toNumberMaxLengthproperty to 11 (depending on the format you desire)Visibleproperty to!IsBlank(txtPhone.Text)Example in action:
Again, pretty hacky, but you could use it with some minor tweaks.