Since Sencha ExtJS 6.5 Modern didn't provide a timepickerfield/timefield, so I wrote one.
If you have not already done so, download and unpack the Ext JS framework from either the Products section of the main Sencha website sencha.com or from the downloads section of the Sencha Support portal.
Once you have your application where you want it, "cd" into its directory in your Command Line Interface (CLI). Then, issue the following command:
sencha app install --framework=/path/to/extjs/
This command will wrap your app code folder with a Sencha Cmd framework that allows your application to benefit from Cmd's many features.
Run this command so that Cmd will generate a web server for you:
sencha app watch
You can now visit the resulting address displayed in your console. It will usually be found here:
http://localhost:1841
With Sencha Cmd 6.5 you can write code using ES6+, this application project uses ES6.
If you want to use this component in your none-ES6+ projects, you should translate it to ES5.
If you want your none-ES6+ projects to use ES6+, you can enable transpiler in app.json
as below:
"language": {
"js": {
"input": "ES6",
"output": "ES5"
}
},