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
2
votes
1 answer

sencha: command not found

I've installed Sencha by using the Terminal but I can't run if from the Terminal samuel@samuel-pc:~/Downloads$ sudo ./SenchaCmd-6.5.0.180-linux-i386.sh -q Starting Installer ... The installation directory has been set to…
Samuel Muiruri
  • 492
  • 1
  • 8
  • 17
2
votes
1 answer

Very Large Extjs App:Too Slow To Load

I am creating an Extjs App by Sencha CMD for which Production App.js size comes around 20 MB. Because of that, it is too slow for first time Load(Around 6-7 s Locally and 30-40s on Cloud). In there any way I can hanlde this so that my App.js size…
AngryLeo
  • 390
  • 4
  • 23
2
votes
1 answer

Loading error on core ExtJS file

I have following folder structure for my project. I am using ExtJS, Sencha Cmd and Flask to start this project. Tools/Framework used for UI Sencha Cmd v6.2.1.29 Ext JS v6.2.1 I have successfully created UI for a sample login app. I have used some…
IT.dumb
  • 71
  • 6
2
votes
1 answer

ExtJS Reactor boilerplate installation error (index.html not found)!

I am trying to run ExtJS over React, as my team is committed to React development. I've personally worked before with ExtJS, so wanted to see if I could combine the power of ExtJS with React. But I couldn't make it work yet. What I have done so…
Moim
  • 486
  • 1
  • 8
  • 23
2
votes
2 answers

how to run sencha web application without compiling

Hello I am new to Sencha. I have created a test application using sencha cmd. When I have to run it i have to compile it. Is there any way so that I can run the application without compiling and without starting web server.
2
votes
2 answers

Sencha: Cannot satisfy requirements for "ext"

trying to refresh my sencha extjs app and always get this error: Commands: sencha app refresh sencha app upgrade Always the same error: [ERR] Cannot satisfy requirements for "ext"! [ERR] The following versions cannot be satisfied: [ERR] …
user2075861
  • 117
  • 2
  • 15
2
votes
1 answer

How to manually refresh an extjs app rather than let sencha cmd app watch command do it automatically?

Until now we are using the following command to develop our extjs apps: sencha app watch classic or sencha app watch modern Because sencha app watch has the effect to reload every time a save occurs, we do not want this effect anymore. Which are the…
George Pligoropoulos
  • 2,919
  • 3
  • 33
  • 65
2
votes
2 answers

ExtJs 5 -- Setting the proxy for a store

I have a Store where I am trying to define its proxy in the constructor, like so: Ext.define('App.store.LabStore', { extend: 'Ext.data.Store', constructor: function(config) { var prox = new Ext.data.proxy.Ajax(); …
Frank Wood
  • 51
  • 4
2
votes
2 answers

Different result of `sencha app build` and `sencha app watch` command in sencha-cmd

I'm using Extjs-6. I created an app using sencha -sdk D:\xampp\htdocs\Lib\ext-premium-6.0.0\ext-6.0.0 generate app Prj1 D:\xampp\htdocs\ExtProjects\Workspace1\Prj1. I build the project with sencha app build and the theme result is as follow: But…
user3961189
2
votes
1 answer

What exactly is "sencha app watch" doing?

I'd like to replicate what sencha app watch is doing in a custom executable to get more control over the whole process... Watching the file system seems pretty straight forward, but what is it with the rebuild that app watch is allegedly doing? In…
Forivin
  • 14,780
  • 27
  • 106
  • 199
2
votes
3 answers

Ext JS Code Package: Include resources/css/*.css in package build

I have a CSS file in the resources/css directory of my Ext JS package. Nevertheless package-all.css is empty after the sencha package build. How can I make Sencha put the CSS file's contents into package-all.css? It should finally be copied to the…
ideaboxer
  • 3,863
  • 8
  • 43
  • 62
2
votes
1 answer

EXTJS: How can i upgrade my Sencha EXTJS 5.0.1 application to EXTJS 5.1.1 version?

I want to upgrade my current application which was built in EXTJS 5.0.1 version with Sencha CMD 5.0.1 . Can somebody please provide the exact steps needed to upgrade it to Sencha EXTJS 5.1.1 version ? Thanks!
DevPro
  • 21
  • 3
2
votes
1 answer

How can I create several ExtJs apps without duplicating the Framework

I'm developing some Extjs 6 applications. I'm using Sench Cmd 6 for creating new application. For every project, It creates a new copy of my lilbrary files. I want to re use the library files rather than duplicate them. | -- library files | --…
Morteza Malvandi
  • 1,656
  • 7
  • 30
  • 73
2
votes
1 answer

Under what conditions does a classpath mapping get added to bootstrap.js by Sencha Cmd?

I'm using Sencha Cmd 5.1.3.61 against Ext. 4.2.3. My classpath is kind of weird. So far as I can tell just about every one of my non-boilerplate non-ext classes needs to have a classpath mapping in bootstrap.js. At run-time in dev-mode the Loader…
David
  • 14,569
  • 34
  • 78
  • 107
2
votes
0 answers

Sencha touch native alert with 3 buttons is getting cut, in Android 5.0 and above (lollipop)

I am using sencha native alert as below: Ext.device.Notification.show({ title: "Title", message: "My message", buttons: ["First button text", "Second button text", "Third button text"], callback: function(button) { //button…