I need users to be able to input time, in Hour:Minute:Second format. I am trying to use the WebDateTimeEditor because I can enforce the correct mask on the entered data. However because what they are inputting is an elapsed time, not a time of day I do not want the AM/PM to display. I have tried changing the input mask but can't seem to suppress it. Am I using the correct control? Is there a way to prevent the AM/PM from showing?
Hello kuelbsd,
I'm just checking if you need any further assistance with the matter.
Hi kuelbsd,
I would suggest that you set the DisplayModeFormat property to "H:mm:ss".
<ig:WebDateTimeEditor ID="WebDateTimeEditor1" runat="server"
DisplayModeFormat="H:mm:ss">
</ig:WebDateTimeEditor>
This would not display the AM/PM indications.
Please let me know if this helps.