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
1 answer
" Cannot read property 'offsetHeight' of null " for Extjs6.0
After the page has been running for a while, then the browser prompts for a resize of the browser " Cannot read property 'offsetHeight' of null "

Mr. Wu
- 33
- 9
0
votes
1 answer
How to return to the previous function by setting a flag using promises
I am making multiple ajax calls using promises how do I return to the previous function by setting a flag. I have a save function in which I am calling a method if(!x()){return;} I want to return some flag out of the x function I used promises for…

Sweety
- 31
- 6
0
votes
1 answer
Does Sencha ExtJS classic toolkit supports responsive design?
Ext JS 6 supports the responsive design. We can use both responsive plugin and media queries to make an app responsive. But all documentation are mentioning modern toolkit. Does classic toolkit support responsive design?

Lejin KR
- 477
- 1
- 3
- 18
0
votes
1 answer
Build app with ExtJS and Spring
I am learning ExtJS framework, for experiments I use on front-end side ExtJS and on back-end side JavaEE Spring framework (it is configured like as REST service). So, I start my front-end part on localhost:1841 and back-end part on localhost:8080.…

Igor Turcanu
- 65
- 7
0
votes
1 answer
Global function for ExtJs 6
here is my Ajax function
Ext.Ajax.request({
url : 'report.php',
method: 'POST',
success: function (result, request ) {
panel.update(result.responseText);
mask.hide();
}
});
and my…

Waqar Haider
- 929
- 10
- 33
0
votes
1 answer
Customized trigger field breaks resizability of the browser window
I have created a custom textfield which can also show trigger icons before the input field.
However, it seems I am missing something important, because now the viewport does no longer resize when the browser window is resized.
I have made a fiddle…

Alexander
- 19,906
- 19
- 75
- 162
0
votes
1 answer
Extjs6 Excel like grid filters with store
I am trying to create a complex filter for a grid. I want the following general behavior:
The filters have a different store than the grid
Apply filter on column A
The grid is filtered based on my selection
The filter in column B will show the…

florin
- 719
- 12
- 31
0
votes
1 answer
how can i close the view parent from view child?
I m using the template admin-dashbord from the ext framework 6.2.0.
When i use this, in my AuthenticationController
this.getView().destroy();
only the child view login close.Not the parent.
The app-main component is build behind the parent view.
I…

mik3fly-4steri5k
- 712
- 3
- 15
- 32
0
votes
1 answer
how to return the data like a array form remote store extjs
I have grid with filter and on the filter i want to show a list of items. By focusing the filter option I should see a list of items with check boxes and when I click on the check box it should send the params. I achieved this by
loading local data…

Sweety
- 31
- 6
0
votes
1 answer
What are rawToValue and valueToRaw in Extjs pickerfield?
I'm using Extjs 6.5. I want to implement a picker that have 4 fields: String, Number, Combobox, Color.
I want to save value as an object as follow:
{
string: 'its my name',
number: 12,
combobox: 'combo',
color: 'ffffffff'
}
That means…

Morteza Malvandi
- 1,656
- 7
- 30
- 73
0
votes
1 answer
ExtJS - How to minimize the roweditor's height?
As I attached the screenshot, I need to minimize the height of roweditor of grid.
Here is the configuration of rowediting plugin:
ptype : 'rowediting',
clicksToMoveEditor: 1,
saveBtnText : 'Kaydet',
cancelBtnText :…

talha06
- 6,206
- 21
- 92
- 147
0
votes
1 answer
Bind codemirror extjs 6
Code mirror is not bind in extjs 6.
I already tried to subcribe the get and set methods, only the set works, when the component is opened the value is set, but when it changes the value of the codemirror, it does not bind with the value
My…

Roberto Pegoraro
- 1,313
- 2
- 16
- 31
0
votes
0 answers
texfield renderer to show number format
I have a form with a textfield and it has a trigger to search on the text entered.
I want to allow the user to type only numbers in it and allow the user to type the entire amount he wants to and when the user completes typing render it to number…

Sweety
- 31
- 6
0
votes
2 answers
widgetcolumn: bind visibility of widget to dataIndex
I have a widgetcolumn that contains a button:
xtype:'widgetcolumn',
dataIndex: 'canUpdateKey',
itemId:'updateKey',
width:120,
widget: {
xtype: 'button',
text: 'Update key',
hidden: '{!record.canUpdateKey}'
}
I only want to display the…

Alexander
- 19,906
- 19
- 75
- 162
0
votes
1 answer
ExtJS synchronize record between clients
I'm trying to do something fun: I'd like to send the record changes from one client to another and have the second client updated to show these changes. Basically collaborative viewing. The second client is disabled from making changes, he can only…

Predrag Stojadinović
- 3,439
- 6
- 34
- 52