ExtJS: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 32: Line 32:


==References==
==References==
{|
| valign="top" |
* [https://www.sencha.com/blog/top-10-ext-js-development-practices-to-avoid-2/ Top 10 Ext JS Development Practices to Avoid]
* [https://www.sencha.com/blog/top-10-ext-js-development-practices-to-avoid-2/ Top 10 Ext JS Development Practices to Avoid]
* [https://stackoverflow.com/questions/37199369 React Routing with Spring MVC]
* [https://stackoverflow.com/questions/37199369 React Routing with Spring MVC]
Line 40: Line 42:
* [http://cdn.medisys.com.my/docs/ext-6.0.0/build/examples/kitchensink/?profile=crisp Ext JS Kitchen Sink 6.0.0]
* [http://cdn.medisys.com.my/docs/ext-6.0.0/build/examples/kitchensink/?profile=crisp Ext JS Kitchen Sink 6.0.0]
* [https://moduscreate.com/blog/ext-js-to-react-routing/ Ext JS to React: Routing]
* [https://moduscreate.com/blog/ext-js-to-react-routing/ Ext JS to React: Routing]
| valign="top" |
* [https://docs.sencha.com/extjs/6.2.0/guides/components/introduction_to_charting.html Introduction to Charting]
* [https://docs.sencha.com/extjs/6.2.0/guides/components/introduction_to_charting.html Introduction to Charting]
* [https://docs.sencha.com/extjs/6.6.0-CE Ext JS Docs 6.6.0-CE]
* [https://docs.sencha.com/extjs/6.6.0-CE Ext JS Docs 6.6.0-CE]
Line 47: Line 51:
* [https://sencha.myget.org/feed/Packages/community Sencha MyGet]
* [https://sencha.myget.org/feed/Packages/community Sencha MyGet]
* [https://docs.sencha.com/cmd/guides/extjs/cmd_app.html Sencha CMD]
* [https://docs.sencha.com/cmd/guides/extjs/cmd_app.html Sencha CMD]
|}

Revision as of 03:31, 5 February 2019

Getting Start

# using classic toolkit for web application
# sencha -sdk /opt/sdk/extjs/ext-6.2.0-gpl generate app -classic Web ./ui.web
sencha -sdk /d/opt/sdk/extjs/ext-6.2.0-gpl generate app -classic Web ./ui.web
cd ui.web;sencha app build
sencha web start

# using modern toolkit for mobile application
# sencha -sdk /opt/sdk/extjs/ext-6.2.0-gpl generate app -modern Mob ./ui.mob
sencha -sdk /d/opt/sdk/extjs/ext-6.2.0-gpl generate app -modern Mob ./ui.mob
cd ui.mob;sencha app build
sencha web start

Components 6.6.0-CE

Accordion Swiper
Undoable Accordion Swiper
Basic Accordion Swiper
Undoable Step Swiper
Basic Step Swiper
Grid Panel
Reconfigure Grid
Editable Grid
Cell Editing
Ticker Grid

References