Hi
I am using Xamnumeric control and mask{time}. But it is considering 12 hours format, I want it to make 24 hours,
Can any one please let me know the mask for time 24 hours format in xaml file
Thanks in advance
Hi,
You should use the xamMaskedInput not the numeric. Then everything will work normal.
Regards,
Anastas
Hi Anastas,
thanks for your answer
Can you please give the xaml syntax for mask "hh:mm". When I am using mask as
<ig:XamNumericInput Mask="hh:mm" /> and when I enter 22:00 and just moved to other control in the page the value in this time is showing like :00 only.
Can you please tell me what can be the issue?
Konda
Can you please give the xaml syntax for mask "hh:mm". I have tried by putting hh:mm format but still it is allowing me to enter only 12 hours not 24 hours.
You should use the xamMaskedInput not the xamNumericInput. And when you using the "time" mask, then the format will be the same as in your OS settings.
If you want to use 24 format you can use this Mask="hh:mm", for 12 hours format use - Mask="hh:mm tt". These two masks are independent of your OS settings.