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
2
votes
1 answer
How to add tooltip in chart for x category field label in EXTJS 6.5.x
I am using EXTJs 6.5. I have designed a bar chart in which the x-axis category label length is too big which overlaps the label. So for a temporary fix, I have added below code to trim the value to 15 characters to show the values postfix with three…

Mani
- 69
- 5
2
votes
0 answers
ExtJs 6.2.1 classic restrain POST function from RoweditPlugin
i created a basic sencha project via cmd:
sencha -sdk path/to/SDK generate app classic SandBox path/to/TARGET
in addition i changed the the data to a Personel.json
{ "items": [
{ "name": "Jean Luc", "email": "jeanluc.picard@enterprise.com", "phone":…

Veritaz
- 23
- 5
2
votes
1 answer
Extjs Issue with binding readOnly property of combo dynamically
I have a widget with combobox & flow I need is something like this,
At first combo is disabled.
Each row has edit icon & when I click on edit only that particular combo should be enabled.
Then when I save the record the enabled combo should be…

NewBie
- 63
- 10
2
votes
1 answer
ExtJS 6: TreePicker does not fire change event
See fiddle here: https://fiddle.sencha.com/#fiddle/2iig&view/editor
The docs (https://docs.sencha.com/extjs/6.6.0/classic/Ext.ux.TreePicker.html#event-change) list 'change' in the events section but when I set the value or reset the field this event…

zeke
- 3,603
- 2
- 26
- 41
2
votes
2 answers
Extjs 6 combobox「queryMode: 'local'」 data not showing
So I have a combobox that is loaded dynamically for a certain view.
Whenever I put the queryMode to remote, it would load the data if I clicked the combobox, but if set to local it won't show any data.
My store will return the requested data…

maryyyyyyy
- 117
- 1
- 1
- 14
2
votes
2 answers
Ext Js 6.0.0 remove table's small red dirty cell flags manually
I have a table where I can change cell data, afterwards I manually trigger an AJAX PUT request with that changed data. The 'table' is extending an Ext.grid.Panel . After the request returned successfully I want the red flags of the changed cells to…

Dirk Schumacher
- 1,479
- 19
- 37
2
votes
1 answer
Recalculate field of model
I have the requirement to recalculate a field in a model on a certain event. I want to calculate the value directly in the model, and not in the view renderers, because otherwise multiple views would also need custom sorting and grouping functions,…

Alexander
- 19,906
- 19
- 75
- 162
2
votes
1 answer
Ext JS 6.2.0 localization overrides don't work
I'm working on Ext JS MVC app, that needs to be localized. Trying to reproduce official docs (http://docs.sencha.com/extjs/6.2.0/guides/core_concepts/localization.html).
Locale file load correctly.
Console message:
[W] Overriding existing mapping:…

Andy Infin
- 421
- 1
- 4
- 9
2
votes
1 answer
In treeview, how to display certain records a second time? (as a favourites bar)
ExtJS 6.0.1
I have a Ext.data.TreeStore with data in it. Entries have a property "favourite", which if set to true updates the actioncolumn icon to show it's been favourited.
This works great, but on favouriting a record, I'd like it to appear at…

trouserboycott
- 137
- 9
2
votes
0 answers
Vertically centering Ext.window.Toast
I can't seem to get the toast to vertically centre. I tried using css to centre it but the old top/translateY causes the text to become blurry. Anyone know how to vertically align a toast?
NOTE: We are only using classic
me.toastNotification =…

topched
- 765
- 3
- 11
2
votes
2 answers
Sencha extjs model.erase removes model even when server error
When calling model.erase({failure..., success...}) the model is removed even when the server responds with a HTTP StatusCode 500. The failure listener is triggered correctly but i would expect that model is not destroyed then. I can see that it is…

Robert
- 176
- 1
- 19
2
votes
1 answer
How to hide menu arrow in Extjs Button
According to the docs of extjs 6.5, setting arrow property to false should hide the menu's arrow. I tried this and still can't hide the arrow. Is there any additinonal steps that I should make?
var filterMenu = Ext.create('Ext.menu.Menu', {
…

ozzykr
- 23
- 1
- 3
2
votes
1 answer
How to give two indentical combo one on grid headr and one as grid column widget for store filter
I have one widget column header by which I am selecting the value and filtering the grid store. I want exact the same on grid header as well. There for I am giving one combo with same values.
Here is my code for column header
header: {
items:…

David
- 4,266
- 8
- 34
- 69
2
votes
0 answers
ExtJS How to add a custom panel to rowexpander
Here's an EXTJS rowexpander implementation
http://jsfiddle.net/Litote0707/xPpf2/
When you expand it, you can see the price.
Instead of price, can I show another custom grid something like this?
Ext.define('my.app.main.CustomList', {
extend:…

user6123723
- 10,546
- 18
- 67
- 109
2
votes
1 answer
migrate from sencha extjs 5.1 to extjs 6
A customer wants to migrate/port a existing extjs 5 application to extjs 6. He has a custom theme and all his classes are organized in packages (except application workspace).
What is your experience with that task? Is it a task which can be done in…

Robert
- 176
- 1
- 19