Questions tagged [sencha-cmd]

For questions related to sencha's command tool.

Sencha Cmd is the cornerstone to build your Sencha application. From scaffolding a new project, to minifying and deploying your application to production, Sencha Cmd provides a full set of lifecycle management features to compliment your Sencha project.

Sencha CMD can be downloaded on Sencha's download site. Installers are available for Mac, Windows and Linux (64 bit, 32 bit).

For more command line options, you can check the Sencha CMD Documentation for Sencha Ext JS or the Documentation for Sencha Touch.

538 questions
0
votes
1 answer

Sencha - Unable to create sencha app

I am unable to generate app using SenchaCmd 5.1.3.61. I am getting following error. Can someone let me know if I am doing something wrong or missing anything? Console Output: D:\wamp\www\SenchaWorkspace>sencha generate app SenchaApp SenchaApp Sencha…
Kalyan
  • 85
  • 2
  • 10
0
votes
1 answer

Porting from EXT js 3.4 to EXT js 5.0

I have a web application on Sencha currently using ExtJS 3.4 functionality using the Sencha Architect 3.2, want to port/Migrate some forms to ExtJS 5.0. What will be the changes required? they will be minor or Major ? Do I need to change whole…
0
votes
1 answer

EXTJS: Sencha CMD Production build doesnot remove console.log statements

When i built Ext JSapp using Sencha CMD command: sencha app build, though the files are minified, extra spaces removed etc BUT the console.log statements still persist and gets executed which is unwanted in PROD ENV!. Any configurations needed…
0
votes
1 answer

Where do I get sencha sdk from?

I need sencha sdk to setup my sencha intellij plugin. When I searched for sencha sdk I got a to sencha command. This is what my sencha command folder looks like. What do I enter for sdk? The only sdk I can find online is for sencha touch. Cant…
Foo
  • 4,206
  • 10
  • 39
  • 54
0
votes
1 answer

Not able to see Main.js when using Sencha CMD6.X

I am using sencha cmd for the first time and i am following the sencha document to set up the application. I am able to follow the documentation and after I create the application, I can only see the "MainController.js" and "MainModel.js" under the…
user2380811
  • 55
  • 1
  • 7
0
votes
1 answer

How to include only the part of extjs library which is being used?

I want to include only required components from Extjs library. I have seen couple of articles as follows, http://blog.mdsohelrana.com/2012/10/21/how-to-compile-extjs-for-production-to-include-only-the-needed-ui-elements/#comment-461257 Ext deployed…
Sparrow
  • 355
  • 4
  • 19
0
votes
0 answers

What's the max number of folders nested in an ExtJS Application?

Well, turns out I have an ExtJS application. My views folder structure (if not the best), is this: CE\app\view\process\Pre OK, inside this folder, I created some components in some other folders, such…
Alex
  • 155
  • 1
  • 2
  • 10
0
votes
0 answers

Automatically run unit tests when a file changed, but wait for "app watch" to finish

I managed to set up a headless test environment for Ext6 that automatically runs unit tests related to files that are changed. That works OK so far, but my tests get executed before "sencha app watch" finishes it's thing (rebuild I guess). To run…
Forivin
  • 14,780
  • 27
  • 106
  • 199
0
votes
0 answers

Got error with rowediting when scrolling

i try to use sencha cmd to create a project. But when using rowediting plugin, i got error "SCRIPT5007: Unable to get property 'getAttribute' of undefined or null reference" whenever i scroll up/down over the editor on the grid. Could you let…
0
votes
1 answer

sencha app build producing duplicate components

I have finished an application and I am in the process of minification. When I build the application I am getting duplicate components rendered. I noticed this when I was testing the application. Whenever I have a grid, there is another one getting…
herms
  • 15
  • 5
0
votes
1 answer

Losing UTF-8 encoding after sencha app build in Sencha Cmd

I'm trying to build my application with sencha cmd 6.0 and ext 6.0, but I have this problem since ext 5 with sencha cmd 5.0. What is happening is that my application in build folder is losing the special characters, like 'ç', 'é', anyone with this…
Guilherme
  • 29
  • 6
0
votes
1 answer

How to configure app.json in the Sencha CMD6?

I have updated my Sencha CMD version to the lastest version 6, I have seen a new implementation with a new object called "sass" in the app.json and my question is.. How to configure correctly this area? I am working with packages in my app and in…
inane
  • 626
  • 10
  • 26
0
votes
0 answers

Maintain package in cache Ext 5

I created a package in ExtJS, and i have some applications that uses the package. My question is: How to maintain the package in cache after loading the new applications in browser ? i dont find anything in docs and in the internet. Thanks
Guilherme
  • 29
  • 6
0
votes
2 answers

ExtJS 6 - Unable to create Native app using command 'sencha app build native'

I am using sencha cmd 6 and trying to build native app with help of - https://docs.sencha.com/cmd/6.x/cordova_phonegap.html I have generated Ext 6+ universal application using following command: sencha -sdk /path/to/Framework generate app MyApp…
Avinash T.
  • 2,280
  • 2
  • 16
  • 23
0
votes
1 answer

How Sencha touch view files are rendered in index.html?

I started learning sencha touch,I want to know how the view files are actually loaded in index.html file, I know app.js launch function is where we are creating view instance and we are setting it into viewport,but how exactly app.js is linked with…