Settings: Ubuntu 16.04.3 LTS, MATE 1.12.1 What I've done:
- Install the Sencha CMD;
- Download the Sencha ExtJS (trial version 6.5.2.15);
- Created the folder /home/master/sencha/test;
- Do
cd /home/master/sencha/test; sencha app init --ext@6.5.2
in the terminal; Put next code into app.js:
Ext.application({ name: 'Test', requires: [ 'Ext.tip.QuickTipManager' ], launch: function () { Ext.tip.QuickTipManager.init(); } });
Do
sencha app watch
in the terminal.
What I've got:
Sencha Cmd v6.5.2.15
[INF] Processing Build Descriptor : default (development environment)
[INF] Starting server on port : 1841
[INF] Mapping http://localhost:1841/~cmd to /home/scilef/bin/Sencha/Cmd/6.5.2.15...
[INF] Mapping http://localhost:1841/ to /home/scilef/sencha/test...
[INF] Server started at port : 1841
[INF] Application available at http://localhost:1841
[INF] Loading compiler context
[INF] Loading app json manifest...
[ERR] C2008: Requirement had no matching files (Ext.tip.QuickTipManager) -- /home/scilef/sencha/test/app.js:7:150
[ERR]
[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.ExBuild: Failed to find any files for /home/scilef/sencha/test/app.js::ClassRequire::Ext.tip.QuickTipManager
[ERR] at or
[ERR] g.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
[ERR]
[ERR] Total time: 9 seconds
[ERR] /home/scilef/bin/Sencha/Cmd/6.5.2.15/plugin.xml:378: The following error occurred while executing this line:
/home/scilef/bin/Sencha/Cmd/6.5.2.15/ant/build/app/build-impl.xml:253: The following error occurred while executing this line:
/home/scilef/bin/Sencha/Cmd/6.5.2.15/ant/build/app/watch-impl.xml:87: The following error occurred while executing this line:
/home/scilef/bin/Sencha/Cmd/6.5.2.15/ant/build/app/build-impl.xml:387: The following error occurred while executing this line:
/home/scilef/bin/Sencha/Cmd/6.5.2.15/ant/build/app/init-impl.xml:436: com.sencha.exceptions.ExBuild: Failed to find any files for /home/scilef/sencha/test/app.js::ClassRequire::Ext.tip.QuickTipManager
[ERR] A log is available in the file "/home/scilef/sencha/test/sencha-error-20171113.log"
Same errors I've got when tried to require (or use) Ext.form.field.Number, Ext.form.field.Date or Ext.progressBar.
I'm new with ExtJS and I spent all last day to find the way to fix this problem, but haven't any success. What am I doing wrong?