The modern toolkit provides universal HTML5 application support for all modern browsers (IE10+) from desktop to phone. The modern toolkit is ideal for developers seeking a cross-browser, cross-device experience for their users.
Questions tagged [extjs6-modern]
150 questions
1
vote
2 answers
How to dynamically add columns for Grid ExtJs
I want dynamically load columns for grid from loaded store.
I used code like in sencha fiddle https://fiddle.sencha.com/#fiddle/lc5&view/editor, it work, but in modern version it dose not work. Because modern version not have reconfigure method.…

Andriy Yushko
- 395
- 5
- 21
1
vote
0 answers
How to make alternative for itemselector in modern version ExtJs
In classic version sencha I use itemselector, but in modern it dose not work:
{
xtype: 'itemselector',
name: 'itemselector',
id: 'pointsSelector',
height: '80%',
displayField: 'text',
…

Andriy Yushko
- 395
- 5
- 21
1
vote
1 answer
How to automatically switch between modern and classic app ExtJs
I have a method which switch into modern version after click on button:
Ext.beforeLoad = function (tags) {
var s = location.search, // the query string (ex "?foo=1&bar")
profile;
if (s.match(/\bclassic\b/)) {
…

Andriy Yushko
- 395
- 5
- 21
1
vote
1 answer
ExtJS Drag and Drop in tree on modern toolkit
Actually I'm going to implement a tree view, where the user should have the option to reorder the structure with drag and drop. Actually I can't figure out how to enable drag and drop. I found a lot of examples using the 'treeviewdragdrop' plugin,…

Mark
- 103
- 1
- 11
1
vote
1 answer
Modern ExtJS 6 6.2 isValid() is not a function
Can I use the isValid() method in the modern version 6.2 EXTJS as I use it in the classic version?
In the classic version it works, but in the modern version there is error:
form.isValid() is not a function…

Umbro
- 1,984
- 12
- 40
- 99
1
vote
4 answers
Hide checkcell on render - extjs 6.5.3 modern
I am trying to hide the checkcell of a checkcolumn if the value of another column is null. But unfortunately according to the sencha docs This config is only processed if the cell type is the default of Ext.grid.cell.Cell.
So the solution with the…

Zoti
- 822
- 11
- 31
1
vote
1 answer
Panel Body Transparency Bug on extjs 6.5.2
I found a bug on extjs 6.5.2 [modern] panel when setting its body background to transparent.
Here is the code that reproduces the issue.
Ext.create({
xtype: 'panel',
bodyStyle: 'background: red;',
bodyPadding: true, // don't want content…

Zoti
- 822
- 11
- 31
1
vote
3 answers
ExtJS 6.x Add Custom Click Event To Component For ViewController
For ExtJS 6.5+ Modern, how do you add a click event to an component so that you can access it in a view controller.
The example below doesn't work. I have also tried adding a listener directly to the sub-element.
Example…

Tony J Watson
- 629
- 2
- 9
- 20
1
vote
1 answer
ExtJS 6.x Modern Button as a Link
On menu items you are able to optionally add either a handler to handle press or mouseclick events or specify and href configuration so that when the menu is simply a link.
{
text: 'Example Ext Menu Item',
iconCls: 'x-fa fa-cog',
…

Tony J Watson
- 629
- 2
- 9
- 20
1
vote
1 answer
ExtJS/Cordova app shows white screen on Google Pixel phones
For some reason, any ExtJS/Cordova apps built only show a white screen when running on a Google Pixel phone. Cordova was updated to the latest version and I'm currently using Ext JS 6.2.1.

Steve W
- 1,062
- 1
- 9
- 24
1
vote
2 answers
Extjs 6.2.0 modern filefield as button
I am trying to create a filefield as a button with an icon. It seems in the documentation that this is not supported in modern 6.2.0. Is there a way?
Link to Docs: http://docs.sencha.com/extjs/6.2.0/modern/Ext.field.File.html
There also doesn't seem…

Baron
- 41
- 7
1
vote
3 answers
How to color EXTJS 6.2 modern grid row
I'm facing an issue. I'm building an EXTJ 6.2 modern app with Sencha architect 4.1. I'm using the grid component in my panel with a server loaded store. I'd like to color rows according to the data I have.
In classic, this is doable with…

Aghi
- 119
- 3
- 13
1
vote
1 answer
Multiple file uploads Extjs 6 modern toolkit
I have done multiple file upload in Extjs Classic Now i want to implement it in Modern toolkit but there are issue
there is no fileButton Field
So i'm using filefield, But i'm not sure how can i get the file data from the filefield here is the…

Waqar Haider
- 929
- 10
- 33
1
vote
1 answer
Extjs D3 Horizontal tree
How to make the links start from the edge of the rectangle.
I am using Extjs modern framework 6.2.1. I am using sencha architect premium controls. I have overridden the control to bring this custom view. Now i am facing problem on links. I dont…

sankar
- 268
- 2
- 15
1
vote
1 answer
How to use ExtJS modern Grid Row expander Plugin?
How to use the grid row expander plugin used in Kitchensink?. Which is not working when we give the itemConfig body tag and plugin list.
Its working only after we mention the column externally like below. Also the row number cell is not displaying…

Gowtham S
- 923
- 14
- 39