The InputTime control extends the ComboBox class to allow easy entry and editing of time values. It allows users to enter times using any format supported by the Globalize class, or to pick times from a drop-down list.
The main properties in the InputTime control are:
<input id="theInputTime">
import * as input from '@grapecity/wijmo.input';
function init() {
// the input time control
let theInputTime = new input.InputTime('#theInputTime', {
format: 'h:mm tt',
min: '9:00',
max: '17:00',
step: 30,
isEditable: true
});
}
Submit and view feedback for