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
-1
votes
1 answer
Extjs Not able to navigate through keys in Month Picker
i am using extjs month picker and i need to use keyboard keys to navigate through months or years . But neither Tab or up ,down left ,right arrow keys seems to be working .
i am using ext version 6.5.0 .
find the fiddle link

Avee
- 45
- 10
-1
votes
1 answer
How to get to saved tag in tagfield in Extjs 6?
Please, I am using tagfield to choose the tags I want. But I don't know how to get the selected tags on the tagfield after I load the saved form. This is my code and thank you:
xtype: 'tagfield',
fieldLabel: 'Event hour (tagfield)',
store: …

Y.Coding
- 109
- 3
- 15
-2
votes
1 answer
Adding 2 weeks view in Calendar ExtJs 6
I want to add 2 weeks view in Calendar but so i have failed to do that. That my code so far, its not displaying the calendar giving following error:
Uncaught TypeError: view.getView is not a function
at constructor.recalculate…

Waqar Haider
- 929
- 10
- 33
-3
votes
1 answer
ExtJs Promise scope not work
Simple example
console.log(this);
new Ext.Promise(function(resolve, reject){
resolve(123);
}).then(
function(v){
console.log(v);
console.log(this);
},
function(){},
…

SamProf
- 1,036
- 1
- 7
- 8
-3
votes
2 answers
EXTJS 6 - Store.Proxy.Sync - ExtraParams for Update but not Create
I have a store that I have added records to, and edited existing records in.
Now I want to sync that data back to the server.
Using store.sync()
This fires off separate requests for each of the sync types (C,R,U,D) (using the proxy api values)
For…

TolMera
- 452
- 10
- 25