For `Ext.form.field.Text` using `editable` is enough. For `Ext.form.field.Date` there is a completely different story. Documentation of Ext.form.field.Date#editable should clarify that. Something...
Type: Posts; User: Nux
For `Ext.form.field.Text` using `editable` is enough. For `Ext.form.field.Date` there is a completely different story. Documentation of Ext.form.field.Date#editable should clarify that. Something...
This is still valid for both ExtJS 6.2.1 and 6.5.3. You should only change the version check (on the bottom) from 6.0.2 to 6.2.1 or 6.5.3.
Update for 6.5.3 needed -> https://www.sencha.com/forum/showthread.php?469741-Complete-offline-docs-for-6-5-3-(indcluding-cmd)&p=1317591#post1317591
So firstly this needs update:
https://docs.sencha.com/misc/guides/offline_docs.html
I've notice this URL works, so that should be added:
https://docs.sencha.com/downloads/extjs-653-docs.zip
...
I'm not using SCSS. That's a standard CSS code. The `hsl` colors are supported in IE9+.
I was not able to force formatting a date in record as a string after cell edit. Seems like a bug in ExtJS that is still a problem at least until ExtjS 6.2.1...
Anyway I was able to make a...
The problem still occurs in ExtJS 6.2.
A workaround is posted in another thread (defining `applyState` function is required to get it working):...
Not sure about older versions, but in ExtJS 6 you can use `defaults` to setup required function.
Ext.define('Myapp.view.SomeFormFieldsets', {
extend: 'Ext.container.Container',
...
Hi. So I know I can bind validators to standard forms, but how do I bind validators with cell editing enbled?
Effectively I want to be able to use value from...
When the problem occurs the two parts of the grid (lock and non-locked) have different number of rows.
My guess would be that there is some race-condition. I'm guessing the two parts are refreshed...
I've updated this for ExtjS 6.2.1. Haven't tested this thoroughly yet, but it seems to work with FF and Chrome.
/**
* Tri-state Checkbox.
* Author: ontho & nux
* Source:...
The crash problem occurs in `syncRowHeightFinish`. Since you never check `otherSynchronizer.length` it can go out of bounds and crash and result in nasty layout errors (views will not render...
Just remember `.map` doesn't work in IE8, so you should probably use a loop like:
transform: function(data){
var objectsData = [];
for (var i = 0; i...
Yeah that would work too, but `Deferred` syntax is going away and `Promise` is standardised now.
Ended up copying `Ext.Promise` (from `ext-6.2.1\packages\core\src\Promise.js`) to `Ext.ux.Promise` and tweaking it to able to support both "modern browsers" and IE.
Here is what start and end of...
Hm... The mess is caused by using browser implementation of `Promise`. That is why there is no `always` and no `otherwise`... So basically there is no way (or none that I can see) to support both IE...
The API is now inconsistent...
`Ext.Promise` uses `then`/`catch`/`always`. And doesn't support `otherwise`. Why? Could use some backward compat. here.
`Ext.Ajax.request` uses...
Still doesn't work for me. I get an error for both "Activate License" and "Start Trial". I always get an error (screen attached). That appears on last step - after I pass in my data (which is either...
I installed the plugin from VS Code store but when I try to activate it I get:
This happens both when trying to start a trail and and using activation code sent through e-mail.
The e-mail...
Yes, it works now. Thanks. (docs too)
Not sure if related, but `docs.sencha.com` redirects to `www.vingle.net`.
I'm guessing problems with activating Visual Studio Code Plugin are related.
Which build you used that worked?
We used one of workarounds from here: https://fiddle.sencha.com/#view/editor&fiddle/1ofs
The one used in `showFloatingPanelMenu` seem to work fine. Here is...
Hi. Seems like classes/CSS for `Ext.menu.Menu` title is broken.
Ext JS v4.2
v 6.0 (same with 6.2)
55602
55603
This is a patch for ExtJS 6.0.2 for remote ProxyStore. Two functions need to be changed - `load` function need to exit when `inStateRestore` is set. And when in `applyState` function the...
Unfortunately this `onFilterEndUpdate` override doesn't work in 6.0.2. Stores still load when restoring state of e.g. a `stateful` panel.