It seems 'this.name' causes a JavaScript error. 'this.getName()' seems to work.
2urd
Type: Posts; User: RoyW
It seems 'this.name' causes a JavaScript error. 'this.getName()' seems to work.
2urd
https://examples.sencha.com/extjs/6.2.0/examples/kitchensink/#row-widget-grid
Checkbox and Radio Buttons are not highlighted when they are invalid.
This seems to happen in all versions but I need it to work in 6.5
2ovo
The problem is that the state is initially applied to an empty store.
When the real store is bound, the grid is re-configured and the sorters/groupers are not copied to the new store.
Here is a...
It looks like this went away in 6.5.0 but came back in 6.5.3+
If you run the following fiddle with the chrome debugger open you can see the exception.
To see the exception, run the code, resize a...
The following fiddle is supposed to dynamically create and add a new panel when the "View New Panel" is clicked.
If you run the code in ExtJS 6.5.0.775 - Triton everything runs fine.
If you...
NOTE: adding 'pruneRemoved: false' to the selection model almost resolves this problem but causes bugs in other parts of our code because records removed from the store are not removed from the...
A store reload should keep any selected records. Even those that have been replaced.
This works OK as long as the grid has never been filtered.
Once a filter is applied and cleared, re-loading the...
I am not sure why this line was in the original
header: false
but take it out and it works
2d2u
In modern its a config of grid
http://docs.sencha.com/extjs/6.5.0/modern/Ext.grid.Grid.html#cfg-variableHeights
https://fiddle.sencha.com/#view/editor&fiddle/294f
A combo box that is set to 'forceSelection' loses the empty text formatting when an invalid value is entered and the field is tabbed out of..
https://fiddle.sencha.com/#fiddle/2947&view/editor
Have you modified your app.json?
/** * The list of required packages (with optional versions; default is "latest").
*
* For example,
*
* "requires": [
* "charts"
* ...
SPAM messages every minute?
The following fiddle creates a large grid.
In IE 11 the scrolling left right is smooth but in Chrome it is slow.
2BU
Unfortunately I don't think so.
The files seem to be created in alphabetical order so the following wont work
File: MyApp/view/View.js
Ext.define('MyApp.view.View', {
extend:...
Aha, looking at the generated code from the original post I can see that now.
So, do you agree the generated code needs o be created in the dependency order and not the order they are in the tree?...
I forgot to mention: I also noticed that if you define a base class and extend it, it looks like the dependency order is also not honored. I saw that in the code the super class was being defined and...
First I would like to say I really like Sencha Fiddle and I think you are doing a great job.
This thread interested me because I have managed to create a fiddle with multiple files that worked so...
The documentation here
http://docs.sencha.com/ext-js/4-1/#!/api/Ext.data.Types
states that types must have 3 properties, convert, sortType and type. In 4.1.0 the AUTO type has no convert method as...
Have you tried extraParams?
proxy: {
type: 'ajax',
extraParams: {
username: 'myUsername',
password: 'myPassword'
},
url: 'my...
I was re-reading the Getting Started guide this morning and noticed that it didn't mention ext-dev.js or ext-all-dev.js at all. The guide should be updated to mention this or you are going to confuse...
Hi,
I am working on a store with a memory proxy. I load the store with initial data and then at various times I update the store with updated records. If the records have the same ID they should be...
For some reason I thought the idProperty referred to the JSON data not the converted data
I have tested in Chrome & Firefox.
Run the following code. The second store does not get id's so store.loadData( Array data, Boolean append )
will always append data to the store
<!DOCTYPE...
Well, there used to be a plugin that did that
http://dev.sencha.com/deploy/ext-4.0.2a/examples/grid/grid-plugins.html
but it doesn't seem to work anymore