I am using below statement to display time.
Qt.formatTime(new Date(),"hh:mm:AP")
Is it possible to display time in 24 hour Format. If so how to do that?
I am using below statement to display time.
Qt.formatTime(new Date(),"hh:mm:AP")
Is it possible to display time in 24 hour Format. If so how to do that?
I got answer following statement display time in 24 hr format:
Qt.formatTime(new Date(),"H:m: a")