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
2 answers
Extjs bind config variable to value
I have the following application: https://fiddle.sencha.com/#view/editor&fiddle/1nmm. I'm using extjs 6.
After double click event on a row, I want to open a new tab. The new tab should contain a form with the information from the grid. My problem is…

florin
- 719
- 12
- 31
0
votes
0 answers
How to replace buildQuery on gridfilters plugin on ExtJs 6?
I am using Extjs 6 and I want to put filters on my grids. I used gridfilters plugin but I can't found the buildQuery method that I have used on Extjs 4. How can I replace it?
this is the code in Extjs 4.2.2:
features: [{
ftype:…

Y.Coding
- 109
- 3
- 15
0
votes
1 answer
How to use the 'overrides' folder generated by Sencha cmd for an Ext JS 6.2 project
What is the best practice to use overrides in extjs 6.2 application. How to make all files inside override folder require by default. In 4.2 we use to set it overrides path in sencha.config and in application requires section we used to mention…

Nayas Subramanian
- 2,269
- 21
- 28
0
votes
1 answer
EXTJS 6: JS files not concatenating into one single app.js file
Sorry a newbie here.I have created a project.I build using
sencha app build classic
What I want is having all the production files in build folder and all js files to be concatenated into one single app.js file in build folder so that it reduces…

AngryLeo
- 390
- 4
- 23
0
votes
1 answer
How to change position of record in the grid permanently
I have problem with changing position of the records which are displaing in the grid. I have added arrows into column and wrote handler like below:
{
text: "Down",
width : 80,
xtype: 'actioncolumn',
tdCls : "row-shifter",
icon: appContext +…

user3531005
- 1
- 1
0
votes
1 answer
Extjs tooltip for selected items of multiSelect combobox
I have done tooltip for drop-down list items like this:
listConfig: {
itemTpl: '
{name}
'
};
and now I what tooltip for selected items , note that combobox is multiSelect, and I want…
Tato
- 195
- 4
- 17
0
votes
1 answer
ExtJs 6 toolpip for combobox selected item
i have done toolpip for compobox list items
listConfig: {
itemTpl: [
'
{mydisplayField}
'
]
now I'm trying to show tooltip for selected item,current value
i have search…
Tato
- 195
- 4
- 17
0
votes
1 answer
Setting up Sencha extjs project
I am attempting to set up a Sencha extjs 6 project. I would like to be able to have both the modern and classic packages available. I'm following this set-up tutorial, but am not finding it very helpful.
If my understanding is correct, I should be…

etchesketch
- 821
- 4
- 14
0
votes
1 answer
ExtJS: Unable to logout using rails as backend
I have an ExtJS6 app as frontend and rails at backend. Using devise for authentication. sessions#destroy looks like
def destroy
cookies.delete :auth_token
reset_session
sign_out(:user)
render json: { success: true,…

ducktyped
- 4,354
- 4
- 26
- 38
0
votes
1 answer
Update legend colors in ExtJS 6 chart
I have a bar chart with a legend in ExtJS 6.0.2.
I need to update the colors of the bars and of the legend when the user does an action (clicking on a pie slice in my case).
Updating the color of the bars works as intended, but the legend doesn't.…

rbntd
- 391
- 2
- 13
0
votes
1 answer
ExtJS 6.2 Update TreeGrid data from store without reloading from server
I have have two tree grids that share the same store. When I drag an item from one to the other all the proper updates seem to happen (Record disappears from location on left tree, places on right tree, left tree now also shows the new placement).…

Stats4224
- 778
- 4
- 13
0
votes
1 answer
ExtJS 6 ViewModel store bindings and setters
I am using ExtJS 6 to build a filterable dataview panel, this is my panel : Panel.js
Ext.define('myApp.view.main.widgets.Panel', {
extend: 'Ext.panel.Panel',
....
viewModel: {
type: 'widgets-view-model',
stores: {
…

ClaraU
- 877
- 3
- 11
- 22
0
votes
1 answer
ExtJS is not using my grid filter override
I have a project in which I needed to make a custom grid date filter.
Everything work fine until the stateful save. I need to add a custom value to the state. I overrode the getState method from a class that extends Ext.util.Filter…

rbntd
- 391
- 2
- 13
0
votes
1 answer
Saving a Tree panel after changing node order
ExtJS 6.0.2:
I need to send to my server any changes in the index order of my Tree Panel.
After reading this: Ext 4.2 Using proxy to save tree and this ExtJs Store.save()? and How to save JSON file when use it as ExtJs grid store and some confusing…

Magno C
- 1,922
- 4
- 28
- 53
0
votes
2 answers
Custom Component in Dataview
I would like to display a custom UI component for each record in a store.
It looks like a DataView is the best way to do this. There are a lot of old links stating how this is possible by using a DataViewItem but I cannot find anything in the…

uesports135
- 1,083
- 2
- 16
- 25