Questions tagged [extjs6-classic]

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.

395 questions
4
votes
1 answer

Extjs 6 Define a chained store using Ext.define

Can a chained store be define using Ext.define statement? I tried the following code but I'm getting errors: Ext.define('MyProject.store.RelFiltered', { extend: 'Ext.data.ChainedStore', source:'MyProject.store.Rel', alias:…
florin
  • 719
  • 12
  • 31
3
votes
1 answer

How to hide specific columns in the grid column menu (ExtJS 6.5.3)?

I have a grid, which has some columns that are set hidden. However, if I click on the column head and open up the menubox it shows all columns in the column section. It also includes those columns that are set hidden in the grid itself. My question…
FlowLess10
  • 133
  • 10
3
votes
1 answer

How to get the data from the window to the main screen

On the success of some Ajax call I am getting opening a window and the response I attach with the window. Here is my code. success: function (response) { var data = Ext.decode(response.data); var window = Ext.widget('win'); window.data…
David
  • 4,266
  • 8
  • 34
  • 69
3
votes
2 answers

Combobox list with clickable button

I am trying to create a combobox with a dropdown with a clickable button. I have overridden the renderTpl and copied the button instantiation code of the datepickers todayBtn. This fiddle shows what I have now, the button is rendered but not yet…
Alexander
  • 19,906
  • 19
  • 75
  • 162
3
votes
0 answers

Need help setting up hasMany model relationship for nested JSON and showing data in grid - EXTJS 6

I am getting some search results back from Elastic in this format { "took": 267, "timed_out": false, "_shards": { "total": 5, "successful": 5, "skipped": 0, "failed": 0 }, "hits": { "total": 1911, "max_score":…
a344254
  • 571
  • 2
  • 9
  • 20
3
votes
1 answer

Sencha 6.5, where classic and modern folders while create new packages

I was trying sencha 6.5, I've created a package using sencha generate package DemoPkg This has created a package for me, but I do not find directories for classic and modern inside it. Did anyone faced this issue? Any suggestion or help on this…
Mos Tuor
  • 33
  • 4
3
votes
2 answers

How to change the colour of an Icon from FontAwesome

I have a menuitem with an icon specified, like this: { xtype: 'menuitem', text: 'Random Text', iconCls: 'x-fa fa-briefcase', } How do I gain access to this icon in the css and change the colour of it?
DeputyDylDog
  • 200
  • 3
  • 12
3
votes
2 answers

extjs package build with vendor / third party libs

In our ExtJS 6 packages we are using some third party libs for date manipulation and so on. Now when we build it we want them to be compiled/bundled/minified into the main js file from the application. How can this be done? Right now he only loads…
Robert
  • 176
  • 1
  • 19
3
votes
2 answers

Sencha ExtJS grid checkbox model single mode deselect

I was wondering if it is possible to deselect a selected row in a ExtJS 6 grid with this selModel configuration: selModel: Ext.create('Ext.selection.CheckboxModel', { mode: 'SINGLE', checkOnly: 'true', …
hbulens
  • 1,872
  • 3
  • 24
  • 45
3
votes
1 answer

Extjs: Drag panels inside responsiveLayout config

I have a panel like admin-dashboard example dashboard in extjs 6 examples with responsiveColumn Layout. Can I make the child panels draggable from one position to other?
AngryLeo
  • 390
  • 4
  • 23
3
votes
2 answers

Unable to conditional hide tab by binding to data property in Ext.js 6

I have a tabpanel where I'm capturing a shopping cart on tab one, payment information on tab two, and showing a summary on tab three. I would like to hide tab two if the shopping cart total is 0. The problem I'm running into is that when I try to…
Chris Schmitz
  • 20,160
  • 30
  • 81
  • 137
3
votes
2 answers

Firing custom event from custom component and handle event in viewController

I have created a custom component that extends from Ext.Panel. I have added a click listener to the custom component so that when it's clicked it will fire an event. I am instantiating the custom component in a view and I want to handle the event…
country_dev
  • 605
  • 4
  • 13
  • 23
3
votes
3 answers

Extjs 6 responsiveConfig cannot find setters for layout config items

I've got a fiddle of a base layout I'm trying to add responsive configurations to. My goal is to use a border layout where the navigation can change between the western region and the northern region depending on the window size and the layout…
Chris Schmitz
  • 20,160
  • 30
  • 81
  • 137
3
votes
2 answers

How to hide "Is this intentional?" warning in Ext JS 6?

I'm currently developing an Ext JS 6 application with some levels of inheritance on components, where some alias mappings get overridden. Ext JS debug is so friendly to let me know each time when I do this. [W] Overriding existing mapping:…
levivanzele
  • 726
  • 1
  • 13
  • 33
2
votes
1 answer

IIS Express w/ VS 2022 crashes when debugging web app and selecting file via file html input on page w/ ExtJs

Here are the details: OS: Windows 2016 server accessed over RD Dev tools: VS 2022 17.1.6 & VS 2019 16.11.11. I run VS in Admin mode (both) IIS Express version: 10.0.22489.1000, 64 bit Browser Chrome: 100.0.4896.127 (Official Build)…
boggy
  • 3,674
  • 3
  • 33
  • 56
1
2
3
26 27