964 questions
0 votes
1 answer
71 views
Ext JS dynamically switching themes failed
I want to know why building 2 sets of applications with different themes failed. I followed the official tutorial : https://docs.sencha.com/cmd/7.8.0/guides/microloader.html#microloader_-...
1 vote
2 answers
120 views
ExtJS multiple child applications inside primary
I'm trying to use multiple Applications inside one parent Application. Here is example fiddle like this: Ext.application({ name : 'Parent app', launch : function() { Ext.application({ ...
2 votes
1 answer
353 views
How to Implement a Theme Switcher (Light/Dark Mode) in ExtJS 6.6 Classic Toolkit?
I am working on an ExtJS 6.6 application using the Classic toolkit and currently have the Triton theme set as the default. I'd like to add functionality that allows users to switch between light/dark ...
0 votes
1 answer
114 views
ExtJS store is not updated or wrongly updated after changing associated object
I'm totally new to ExtJS and have found an issue in an existing application. I have two models: A and B. Defined like this Ext.define('A', { extend: 'Ext.data.Store', fields: [ { name: 'id', ...
0 votes
1 answer
44 views
Sort a String characteristc in combobox ExtJs
I hava the follow situation in software the characteristcs of a store combobox are defined by client as String, but the sort of combobox is: A 1 A 11 A 2 A 21 A 3 ... but my client needs a sort like ...
0 votes
1 answer
66 views
How to change body padding of the windows in ExtJS Triton?
I have a window with a tabpanel in it. It's really annoying how the window has its 5px padding. I try to override all the paddings of the window, but has no effect on it. And it's same with a grid in ...
0 votes
0 answers
57 views
No scroll bar showing by default, if there more rows in Extjs (6.0.0.640) Grid and Combo box
In the grid and combo box, if there is more data by default scroll bar not showing in a few of the systems. How can we resolve it? EXT JS version - 6.0.0.640 Both the system with the working scroll ...
0 votes
1 answer
42 views
can we do the same thing for grid checkcolumns?
I want to do something similar to this fiddle :https://fiddle.sencha.com/#view/editor&fiddle/20rt but the difference is that he has done it for checkbox xtype but I want it for checkcolumn .Please ...
0 votes
1 answer
181 views
Icon class does not apply to a ExtJS menu item containing text field
In an ExtJS 6 classic mode application I am trying to configure a menu having both regular items and items with input fields. The idea is to let the user click normal item and then display an item ...
0 votes
1 answer
449 views
extjs 6 grid scrollbar jumping
I have an extjs 6.0.1.250 grid, with a remote json store, it is loading every 2 seconds, to refresh its data. It shows a device list with the device statuses, about 200 lines. (name, uptime, etc...) ...
0 votes
1 answer
134 views
List the fields associated with a record in ext.js
I have a bit of ext.js code that looks like: items: [ { xtype: 'textfield', hidden: false, fieldLabel: 'MyType', inputId: 'MyType', bind: { ...
0 votes
1 answer
441 views
how to get file details of uploaded file in extJS
how to get file details of uploaded file in extJS I am using file upload and I need to first conveert into Grid and then sumbit. for grid conversion I have to take all files details like this : File { ...
1 vote
2 answers
362 views
How to change the data in extJS combo dropdown?
How to change the data in extJS combo dropdown ? I have Combo box and I am trying to load the data. I want to sanatiize my data for some Reg expression. Here is my Stroe code. Ext.define("MyApp....
0 votes
2 answers
285 views
Unable to select text in resizable grid
I need to have Ext.panel.Grids (v6.2.0) that are both resizable and allow users to select the cell values. I have a bunch grids that I've set to be resizable with: resizable: { pinned: true, ...
0 votes
1 answer
368 views
How to set length of a combo box to only allow one of two values
I have the combobox minLength set to 5. I want the combobox to require the length to be 5. If it is longer than 5, I want the minLength to be set to 10. So the outcome should be: the min length can be ...