I also get this error.
sencha CMD version: 6.2.0.103
toolkit: classic
ext-version: 6.2.0.981
built with commandline:
sencha app build testing
app.json testing:
Type: Posts; User: medoni
I also get this error.
sencha CMD version: 6.2.0.103
toolkit: classic
ext-version: 6.2.0.981
built with commandline:
sencha app build testing
app.json testing:
Hi,
according to your Comparing JS Compression Methods in Sencha Cmd blog, I was experimenting with JS compressors.
The closure compressor doesn't work in FireFox. Somewhere in my code I use...
I have the same problem in 6.0.1
// simple test case
var store = new Ext.data.BufferStore({
});
store.load();
console.log(store.isLoading()); // -> false
Please add a stack trace for functions (and mixins). I was getting the following error executing sass (sencha ant sass):
[INF] Building ..\..\..\build\temp\testing\PM\sass\PM-all.scss
[INF]...
You can use a custom setter on your GRID (or tree or any other component).
Ext.define('myGrid', {
extend: 'Ext.grid.Panel',
mixin: [
'Ext.mixin.Responsive'
Why you don't use TextArea.maxLength? Ext.form.field.TextArea doesn't cut the pasted value.
You can add `skip.slice=1` to your .sencha/app/sencha.cfg. Then rebuild your app (run `sencha app clean` and `sencha app build`)
maybe like this way:
https://fiddle.sencha.com/#fiddle/tkd
it supports:
- displaying disabled state (myTreeColumn class)
- vetoing selection change
- adds a TreeNode.isDisabled() function....
In Ext.grid.locking.View you`re choosing the wrong `NavigationModel` for custom Tree`s with it's own xtype.
// A single NavigationModel is configured into both views.
me.navigationModel =...
https://fiddle.sencha.com/#fiddle/l2e
You need:
- tree panel
- rootVisible = false.
- bufferedRenderer = true (this is default)
- a remote proxy
And then force a layout run before...
Hi,
sometimes I get the following error.
52154
This is triggered by a LayoutUpdate. But I cannot reproduce this.
For fiddle.sencha.com I get certificate errors in Chrome and FF.
https://www.ssllabs.com/ssltest/analyze.html?d=fiddle.sencha.com
- No TLS 1.2 support
- SHA1 Signature algorithm
Your...
The second date is in a DST. (thx evant for the hint)
52021
We are switching on 2015-03-29 from CET to CEST
Date.diff(DAY, WEEK, MONTH, YEAR) should discard time and timezone information....
it's a floating point issue.
52011
You are using Math.floor to cut of decimal digits. http://docs.sencha.com/extjs/5.1/5.1.0-apidocs/source/Date7.html#Ext-Date-method-diff
if you reverse...
I get 4 for the first example.
testet on:
- Chrome 42
- FF 36
- IE 11
all on Windows 7 (64Bit) German
52010
Your Date.Diff implementation has a bug.
Ext.Date.diff(new Date(2015, 02, 29), new Date(2015, 03, 03), Ext.Date.DAY); // returns 4
Ext.Date.diff(new Date(2015, 02, 30), new Date(2015, 03,...
FF (latest, 36) and IE9 doesn't fire blur event when you click inside an iframe element (eg. Html Editor).
https://fiddle.sencha.com/#fiddle/jao
Chrome, IE10 and IE11 are fine.
Hi,
Switching tabs on Firefox with Ext-Gray-Theme doesn't work correctly.
You have to click twice to switch the tab. First the tab (text) will be focused, next click the tab will be switched....
I get an Error when I try to reconfigure a lockable grid. This occurs only if the grid is not rendered.
Fiddle: https://fiddle.sencha.com/#fiddle/gqp
Possible fix:
Ext.define('', {
...
OK, this occurs (only) when you have a grid or tree in the centered region. Here`s the main.js of my DemoApp:
Ext.define('DemoApp.view.main.Main', {
extend: 'Ext.container.Container',
...
The Page Analizer of Ext5.1 does not work with Border layouts.
hooks.js#afterRun tries to log the layout result via JSON.encode. In case of Border layouts you get a 'too much recursion' exception....
There is a bug in PageAnalyzer.js#getHrefMinusHash
getHrefMinusHash: function() {
var href = location.href.replace(Ext.History.getHash(), '');
return href;
},
Yes it's the same issue.
I think the problem is http://docs.sencha.com/extjs/5.0/5.0.1-apidocs/source/TableLayout.html#Ext-view-TableLayout-method-calculate
Next to bodyHeight, you set also...
Since 5.0.x the grid panel ignores emptyText if no height is specified. In latest 4.x the height is correct
https://fiddle.sencha.com/#fiddle/f79
No doesn't help,
the original fixKeys Function returns a browser depended function.
To reproduce, please change your fiddle-fixKeys to this:
fixKeys: (function() { // load time branching...