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

build.xml ignoring tags and if options

I have a sencha Ext.js project and I am trying to get user input and take action based on that user input in my build.xml file. Here's my build.xml:
Red Cricket
  • 9,762
  • 21
  • 81
  • 166
0
votes
1 answer

Cordova : what kind of cordova plugins should be removed in release time?

i'm working in sencha touch application with cordova. i plan to make release apk for android. Could any one explain me which kind of plugins we don't use with release apk ? i.e i'm using these plugins in my project, com.phonegap.plugins.PushPlugin…
0
votes
2 answers

Secha ExtJs workspace and multiple pages(apps)

I understand how to create and use multiple pages(or apps) within a workspace and build them. I am kind of confused about how do you make these multiple apps talk to each other ? lets say I have two apps in my workspace - App1 and App2. I can use…
Jayaram
  • 839
  • 1
  • 14
  • 24
0
votes
2 answers

Sencha app build production successfully,but the production page fails to load with .js not found error

I am using Extjs 5 ,sencha cmd 5 and extjs sencha charts. My app's index.html in the 'app' directory works fine,and sencha app build successfully. When I go to the production package to load the production index.html,the console gives me the error…
happyyangyuan
  • 179
  • 3
  • 14
0
votes
1 answer

unable to launch sencha architect - internet connection error

I am about to work on ExtJs and downloaded Sencha Architect to build some application, but this is showing me the error that Unable to establish internet connection. I don't know why this is giving this..did anyone face this issue..? Pls help me
kumar
  • 1,796
  • 2
  • 15
  • 37
0
votes
3 answers

Sencha Cmd 5.1 error on updating Extjs framework relative/absolute path

I am using Sencha Cmd 5.1 to build my Extjs 5.1.0 application. ** when i change the ext framework path under .sencha/workspace/sencha.cfg file to ** ext.dir =../ext or some absolute path like C:\Temp\Framework\ext then it throw the following…
Harry
  • 183
  • 1
  • 15
0
votes
1 answer

How to implement Dynamic Grid in Extjs?

I want to implement dynamic grid in Extjs. I have found this How do you create table columns and fields from json? (Dynamic Grid) and the accepted answer looks good. In my case I have no proxy store but a proxy model: fields: [ {name: 'id', type:…
Adam Gilly
  • 49
  • 2
  • 9
0
votes
1 answer

Sencha cmd 5 minify issue

I am trying to minify sencha 5 project with sencha cmd, but it always failed. sencha generate app -ext demoApp ./demoApp Then I try to minify the app, by typing sencha app build production For blank project, the minify success, I can run in my…
Jef
  • 869
  • 4
  • 13
  • 27
0
votes
1 answer

Not storing cell value when other grid row is selected in extjs

I'm having two grid in application & I'm using rowSelectionModel. Now after user write anything in editable cell & then (w/o clicking anywhere) clicks on main grid row; rowselect function is getting called. Please tell me way to retain the data in…
user81239
  • 1
  • 2
0
votes
2 answers

How to use a ux component in Extjs CMD Application?

I want to use Ext.ux.LiveSearchGridPanel in my view. Currently I am setting gridPanel as xtype:'app-main', controller: 'main', viewModel: { type: 'main' }, layout: 'absolute', autoScroll : true, resizable:true, …
Adam Gilly
  • 49
  • 2
  • 9
0
votes
1 answer

How to renderto element other than the body by default on ExtJS 5?

so Im building a brand new ExtJS 5 application using Sencha CMD 5.1.2.52 with the command sencha generate app MYAPP ../MYAPP It automatically renders to the body tag, but I would rather render it to a div with the id "#myDiv". I looked for the…
Multitut
  • 2,089
  • 7
  • 39
  • 63
0
votes
2 answers

Sencha Cmd, Missing Required Arguments, Packages

I've navigated to a workspace. I am running the Sencha Cmd commands as outlined in the two documents: Creating Packages and Sencha Cmd Packages. I have also run the help command for the below command. It is my belief the command is correct; however,…
Thomas
  • 6,291
  • 6
  • 40
  • 69
0
votes
1 answer

Not able to perform CURD operations properly in my Extjs app using Json-Server

I am using Json-server to test CURD operations in my extjs grid. I have put some dummy data on json-server and I am able to read, delete, update and edit that data. But When I create data using my extjs app, I am not able to delete or edit that…
Adam Gilly
  • 49
  • 2
  • 9
0
votes
2 answers

Set iOS app icons in Sencha Touch + phonegap?

I have seen a lot of different approaches to this but none seem to work for me. What is the straightforward way to set iOS app icons for a vanilla touch 2.3.1 + phonegap project with cmd 4? I have all the files in /resources/icons and have set the…
patrickkidd
  • 2,797
  • 2
  • 19
  • 19
0
votes
1 answer

sencha touch RadioGroup not working

Does RadioGroup works properly in sencha touch ? Example : var myRadioGroup = new Ext.form.RadioGroup({ id: 'myGroup', xtype: 'radiogroup', fieldLabel: 'Single Column', // Arrange radio buttons into three columns,…