ExtJS: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 65: Line 65:
* [https://stackoverflow.com/questions/37199369 React Routing with Spring MVC]
* [https://stackoverflow.com/questions/37199369 React Routing with Spring MVC]
* [https://glyphicons.bootstrapcheatsheets.com/ Bootstrap Glyphicons for ExtJS]
* [https://glyphicons.bootstrapcheatsheets.com/ Bootstrap Glyphicons for ExtJS]
* [https://examples.sencha.com/ExtReact/7.0.0/kitchensink/frame-index.html ExtReact  Kitchen Sink 7.0.0]
* [https://examples.sencha.com/ExtReact/7.0.0/kitchensink/frame-index.html#/ ExtReact  Kitchen Sink 7.0.0]
* [http://cdn.sencha.com/ext/gpl/ext-6.2.0-gpl.zip  Ext-6.2.0-gpl.zip Download]
* [http://cdn.sencha.com/ext/gpl/ext-6.2.0-gpl.zip  Ext-6.2.0-gpl.zip Download]
* [https://examples.sencha.com/extjs/7.0.0/examples/kitchensink/frame-index.html?profile=triton Ext JS Kitchen Sink 7.0.0]
* [https://examples.sencha.com/extjs/7.0.0/examples/kitchensink/frame-index.html?profile=triton Ext JS Kitchen Sink 7.0.0]

Revision as of 10:07, 22 October 2019

Optionally

# 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
sed -i 's/"theme": "theme-triton"/"theme": "theme-crisp"/g' ./ui.web/app.json
#cd ui.web;sencha app build --clean --environment development
#cd ui.web;sencha app build --clean --environment production
cd ui.web;sencha app build
#sencha app refresh 
#sencha app watch
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
sed -i 's/"theme": "theme-triton"/"theme": "theme-ios"/g' ./ui.mob/app.json
#cd ui.mob;sencha app build --clean --environment development
#cd ui.mob;sencha app build --clean --environment production
cd ui.mob;sencha app build
#sencha app refresh 
#sencha app watch
sencha web start

Simplified

# using classic toolkit for web application
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 /d/opt/sdk/extjs/ext-6.2.0-gpl generate app -modern Mob ./ui.mob;\
sed -i 's/"theme": "theme-triton"/"theme": "theme-ios"/g' ./ui.mob/app.json;\
cd ui.mob;sencha app build;\
sencha web start

Component

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

References