Questions tagged [extjs7-classic]
10 questions
1
vote
1 answer
XML Parsing Error: not well-formed for bootstrap.js file- Firefox
On Loading the Ext JS application in Firefox I observe XML error where bootstrap file is loaded as XML file instead of JSON.
As per my understanding content-type has to be defined in file but since bootstrap file is first to load where else to…

Priyasree K
- 15
- 2
0
votes
1 answer
initComponent is not working for Ext.panel.Panel
I currently playing with this embedded fiddle in the documentation https://docs.sencha.com/extjs/7.6.0/classic/Ext.grid.Panel.html:
Ext.create('Ext.data.Store', {
storeId: 'simpsonsStore',
fields:[ 'name', 'email', 'phone'],
data: [
…

leonard.javiniar
- 539
- 8
- 25
0
votes
0 answers
How to use async and await in Extjs Extended Class methods constructor, initcomponent
initComponent: async function () {
var me = this;
const isPivotLoaded = Ext.Package.isLoaded('ckeditor');
if (!isPivotLoaded) {
var result = await…

Prabhakaran
- 92
- 2
- 10
0
votes
1 answer
EXTJS- Grid column sorting - sort the null values of columns at the bottom of the grid
While sorting the EmpNo column either ASC/DESC, null values should be avoided so that it will be at the end of the grid.
This code just helped to reverse the sorting logic:
if(v1 < v2 || !v1) {
return -1;
}
if(v1 > v2 || !v2) {
…

Priyasree K
- 15
- 2
0
votes
1 answer
ExtJs classic - deep bind to an array value is not re-evaluated when the array is added items
I created this fiddle where you can see what happens: https://fiddle.sencha.com/#view/editor&fiddle/3ndt
Ext.application({
name: 'Fiddle',
launch: function () {
Ext.define('MyViewModel', {
extend: 'Ext.app.ViewModel',
…

boggy
- 3,674
- 3
- 33
- 56
0
votes
0 answers
Extjs styles are not displayed correctly on browser zoom
When the browser window is zoomed, the Extjs styles are not displayed correctly.
browser: google chrome Version 112.0.5615.50 (Official Build) (64-bit)
zoom level: 125%
extjs version: 7.6
toolkit: classic
theme:…

omid
- 400
- 3
- 19
0
votes
1 answer
Integrate font-awesome pro 5 with ExtJs 7.6.0
ExtJs 7.6.0 comes with the free version of font-awesome (fa) 5. Has anyone been successful in integrating fa pro 5 with ExtJs 7.6.0 (classic)?
If yes, any tips or instructions?
I found these instructions from here but they apply to integrating fa 5…

boggy
- 3,674
- 3
- 33
- 56
0
votes
1 answer
Ext.grid.Panel : Out of Memory
In extjs 7.5.1 all gridpanel are "infinity scroll" ones and have the plugin https://docs.sencha.com/extjs/7.5.1/classic/Ext.grid.plugin.BufferedRenderer.html
"(...) users to scroll through thousands of records without the performance penalties of…

João
- 2,296
- 5
- 20
- 30
0
votes
2 answers
ExtJs panel ViewModel getStore() call returns null instead of returning local ajax store object with URL bound to ViewModel data member
To reproduce this issue, I created a fiddle: https://fiddle.sencha.com/#view/editor&fiddle/3mk0 . The steps to reproduce are as follows:
Open your favorite browser and open the debugging tools to be able to view the JavaScript console
Navigate to…

boggy
- 3,674
- 3
- 33
- 56