Questions tagged [extjs7]

Sencha ExtJS is a JavaScript framework for building Rich Internet Applications (RIAs).

Version 7 of the Sencha ExtJS framework.

Previous versions: ExtJS6

169 questions
3
votes
0 answers

Sencha Themer 1.4.0 fat file, but missing compatible architecture (have 'i386,x86_64,unknown', need 'arm64e')

i'm using Sencha Themer 1.4.0 on Apple M1 with Monterey 12.4 java version "1.8.0_333" Java(TM) SE Runtime Environment (build 1.8.0_333-b02) Java HotSpot(TM) 64-Bit Server VM (build 25.333-b02, mixed mode) Always loading bar on open or create a theme…
Lucaele
  • 39
  • 4
3
votes
2 answers

ExtJS 7 with npm - Cannot satisfy requirements for "google"

Trying to add a google map to an ExtJS app that's using the "open tooling" (i.e. npm) scheme. $ ext-gen app -t moderndesktopminimal -m theme-material -n App $ cd app $ npm install --save @sencha/ext-google $ vim app.json # add "google" to the…
Paul Dugas
  • 325
  • 2
  • 14
2
votes
1 answer

ExtJS 7 Modern : Retrieve grid selected rows

I have a grid with checkbox selection to allow multiple rows selection. Ext.define("app.view.grid.MyGrid", { extend: "Ext.grid.Grid", xtype: "app.MyGrid", viewModel: "Grid", selectable: { rows: true, checkbox: true, }, But now,…
RynnHeldeD
  • 51
  • 6
2
votes
1 answer

Can we avoid setting additional fields in Model?

Ext.define('User', { extend: 'Ext.data.Model', fields: [ {name: 'name', type: 'string'} ] }); Ext.create('User', { 'name' : 'A', 'createdBy': 'Random' }); EXTJS 4.1 ignores 'createdBy' field while creating record. While in 7.4, it saves…
2
votes
2 answers

No ext-locale package available in ExtJS 7.3

For some weird reason, I'm getting this error: Cannot satisfy requirements for "ext-locale"! [ERR] The following versions cannot be satisfied: [ERR] App: ext-locale (No matches!) [ERR] Cannot resolve package requirements Per official…
John Smith
  • 1,848
  • 3
  • 13
  • 24
2
votes
1 answer

How does an end user clear the sorting for a grid column?

I use ExtJs 6.6.0 Classic. The grid component supports multi-column sorting (I use remoteSort: true, remoteFilter: true). Whenever the user clicks on a column header, that column becomes the first column in the order by list. But I cannot find how…
boggy
  • 3,674
  • 3
  • 33
  • 56
2
votes
1 answer

How can we override Ext.Base?

I am using Ext JS v7.1 and I have overridden Ext.Base to set my naming scheme for the classes that inherits from Ext.Base: This eases my debugging. Ext.define('App.class.Base', { override: 'Ext.Base', constructor: function() { var me =…
kpax
  • 63
  • 9
2
votes
2 answers

Tooltip not showing when enabling a button

After upgrading from Ext5 to 7.2 it is no longer possible to see a tooltip after programatically enabling a button. Ext.define('X', { extend: 'Ext.panel.Panel', initComponent: function() { this.tbar = [{ text: 'Foo', disabled:…
gulty
  • 1,068
  • 1
  • 8
  • 14
2
votes
1 answer

Datepicker is not selecting corretly the previous values when we have two components on sencha ext js 7.2

I am having some issues with the date picker component on ext js 7.2. Here is the fiddle to reproduce the behavior: https://fiddle.sencha.com/#view/editor&fiddle/36h9 Basically, I have two date picker component on the same page, when I intercalated…
2
votes
2 answers

Trial watermark when installing ExtJs 7 GPL version

I have installed ExtJS 7 GPL version following the instructions received by email npm login --registry=https://sencha.myget.org/F/gpl/npm/ --scope=@sencha npm install -g @sencha/ext-gen ext-gen app -a -t moderndesktop -n ModernApp cd modern-app npm…
LuD_GRi
  • 63
  • 7
2
votes
2 answers

Local gridfilters

in ExtJS 4 i could create a filter to filter my grid. When is set local to false, i could filter my store. var filtersCfg = { ftype: 'filters', autoReload: false, //don't reload automatically local: false, //remote filter // filters…
Torf
  • 41
  • 4
2
votes
2 answers

searching a word does not work in combobox in ext 7 version

i have a combobox in EXT version 7 code. I have the editable config as true. My code is as below. This code is similar to what is present in the sencha docs. I have just changed the editable config to true . When we type anything in textfield it…
Radhika
  • 43
  • 5
1
vote
2 answers

Resizing Button Icon in ExtJS 7.6.0

How do I resize the icon size of a button? I'm using ExtJS 7.6.0. I am currently developing a web application using ExtJS 7.6.0 and I've come across a situation where I need to resize an icon on a button. I've defined the button like this: { …
1
vote
1 answer

Bootstrap.js missing in prod build

I use ExtJS together with Grails. I have already two ExtJS applications in that project and now I want to add a third one. The new application runs fine in development mode, but when I am starting it in production mode and then try to open it in the…
omikron
  • 11
  • 2
1
vote
1 answer

ExtJs - Unselect multiple rows in grid with selType: "checkboxmodel"

Is there a way to unselect multiple rows holding SHIFT (that are already selected)? See fiddle here. No luck yet. Thanks.
1
2 3
11 12