Dear Comunity:
Good day, I am stuck with something that I'm sure must be easy to solve, I am using slider control to set some times, so I have one for set the hour and the other for minutes, the problem is I need that from number 1 - 9 number 0 be showed before its:
Example:
How actually is showed How I need to be show
If you have any ideas I will be greatefull!
Regards!
Solved! Go to Solution.
Its not possible to change the format of the value in the callout from 9 to 09.
Instead you can set the ShowValue property of the slider to this
False
Then create a label beside the Slider with this Text property to format the value
Text(Slider1.Value,"00")
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Its not possible to change the format of the value in the callout from 9 to 09.
Instead you can set the ShowValue property of the slider to this
False
Then create a label beside the Slider with this Text property to format the value
Text(Slider1.Value,"00")
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Hi @felipito1 ,
Based on the needs that you mentioned, I afraid that there is no direct way to achieve your needs in PowerApps currently.
As an alternative solution, I think the Tooltip property of the Toggle control could achieve your needs. I have made a test on my side, please take a try with the following workaround:
Set the ShowValue property of Toggle control to following:
false
Set the Tooltip property of the Toggle control to following:
Text(Slider1.Value, "[$-en-US]0#")
then when you put the mouse focus on the Toggle control, you would see the expected effect as below:
Please consider take a try with above alternative solution, check if it could help in your scenario.
Best regards,
Thank you very much all of you for your kindly assistance.