Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
190
WebDateTimeEditor inputing Time
posted

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?

 

Parents
  • 37874
    posted

    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.

Reply Children
No Data