The classic toolkit provides traditional Sencha Ext JS application support. This includes support for most desktop browsers, tablets, and touchscreen enabled laptops. The classic toolkit is ideal for developers seeking legacy browser support (IE8+) with traditional Ext JS componentry.
Questions tagged [extjs6-classic]
395 questions
0
votes
0 answers
How to cancel select event on Ext.list.Tree in ExtJS 6?
I'm using Ext.list.Tree (xtype: 'treelist') component as a navigation tree for the app.
I am trying to catch when a user tries to select a different node and display a warning message before continuing. If a user chooses to stay on the page then I…

serg
- 109,619
- 77
- 317
- 330
0
votes
0 answers
Extjs 6 : How to set convert function of the fields dynamically in extjs while creating dynamic cols of a grid
I am creating dynamic cols poc in there i am using json data to bind the columns and as well as fields..when i created the convert function in the fields of the json data then the convert function is not working.
Below is the sample…

user3629299
- 37
- 1
- 10
0
votes
1 answer
ExtJS - How to style disabled buttons?
Even though it is possible to inspect styles of enabled buttons & customize them by creating CSS rules, tools such as Chrome Dev Tools, Firebug, Firefox Dev Tools are not able to inspect disabled buttons of ExtJS.
The question is that how can I…

talha06
- 6,206
- 21
- 92
- 147
0
votes
3 answers
ExtJS 6 - How to show tips on charts?
We have been using tips configuration of series in order to set interactive tips for ExtJS 4 & 5. But with ExtJS 6, it does not work anymore. So what is the proper way of showing tips using ExtJS 6 chart package?
series: [{
type: 'pie',
…

talha06
- 6,206
- 21
- 92
- 147
0
votes
2 answers
Ext JS 6.0.0 Button margin property not work
I have a button in a panel, and I need set a margin value, but the component not apply the value of margin, the EXT just ignore the margin property.
The follow code:
Ext.define('CadastroEnsaioWTD.view.typecalculated.TypeCalculatedItem', {
…

João Pedro Schmitt
- 1,046
- 1
- 11
- 25
0
votes
2 answers
Checkboxgroup height too small - Checkboxes not visible
The size of my checkboxgroup is not enough to show all checkboxes.
Here is a fiddle:
https://fiddle.sencha.com/#fiddle/1169
The checkboxes below "Show these detail columns" are not completely visible.
I would like to change that, but I don't find my…

Alexander
- 19,906
- 19
- 75
- 162
0
votes
1 answer
ExtJs 6 Store not visible in Grid
I'm trying to port existing application from ExtJs 4.2.1 to 6.0.1
The problem that in debugger I see that grid has 'ext-empty-store' store instead of 'store.accounting.Quota'
I can load the store directly in panel activation listener by doing
…

AlexeiP
- 581
- 1
- 10
- 26
0
votes
1 answer
EXTJS: Sencha CMD Production build doesnot remove console.log statements
When i built Ext JSapp using Sencha CMD command: sencha app build, though the files are minified, extra spaces removed etc BUT the console.log statements still persist and gets executed which is unwanted in PROD ENV!.
Any configurations needed…

DevPro
- 21
- 3
0
votes
1 answer
Not able to see Main.js when using Sencha CMD6.X
I am using sencha cmd for the first time and i am following the sencha document to set up the application. I am able to follow the documentation and after I create the application, I can only see the "MainController.js" and "MainModel.js" under the…

user2380811
- 55
- 1
- 7
0
votes
1 answer
Why is my checkbox not visible?
I'm developing an application with Extjs-6. I define a checkbox as follow:
{
xtype: 'checkboxfield',
fieldLabel: 'This is a CHECKBOX, but it\'s not display',
style: {
width: '95%',
marginBottom: '10px',
color: 'blue'
…

Morteza Malvandi
- 1,656
- 7
- 30
- 73
0
votes
1 answer
ExtJs 6.0 : Grid Cell Editing with a Combobox - Not Syncing the id value
I'm using a grid with Ext.grid.plugin.CellEditing. On the grid, there's a combobox and a date. The date is syncing correctly, but the combobox is trying to save the id of the combobox in a String description field.
My combobox has fields…

TamaDrummer
- 11
- 1
- 2
0
votes
1 answer
How free memory after using `Ext.window.Window` class instance?
I'm using Extjs-6 for developing my application. I have most than 20 controller in my application. In all of these controllers, some times, these controllers show a Ext.window.Window class instance and then user close this window(In other hands, All…

Morteza Malvandi
- 1,656
- 7
- 30
- 73
0
votes
2 answers
Defining associations in ExtJS
I have three tables in my database. They are Student, Subject and Mark. Student has these fields: id, name, address. Subject has these fields: id, name. And Mark has these fields id, studentId, subjectId and mark. So, here I have these associations…

user3127109
- 3,421
- 8
- 24
- 33
0
votes
1 answer
How get extjs-6 sotre's data in mvvm architecture?
I'm developing an Extjs 6 application using MVVM architecture. I have a model in MyApp/model folder as follow:
Ext.define('MyApp.model.User', {
extend: 'Ext.data.Model',
fields: [
{name: 'name', type: 'string'},
{name:…

Morteza Malvandi
- 1,656
- 7
- 30
- 73
0
votes
1 answer
Difficulty in passing selected row from grid to new window in extjs
I have a grid panel and when the user selects the row and clicks the edit button or dbl clicks the row, I want to send the selected row to the new window. But I am having trouble in sending the data.
Here is my grid panel.…

user3127109
- 3,421
- 8
- 24
- 33