mercredi 1 octobre 2014

SelectionModel.selectAll() broken in 5.0.1.1255

Hi

I have created the following fiddle for this

http://ift.tt/1uBrn4C


From extjs 5.0.1, using selectAll() on the selection model only seems to select some of the rows


There are two variations of this:

1) if mode = SIMPLE, almost all of the items are selected (in the example it selects 96 out of 100).

2) if mode = MULTI (as in the example) a varying number are selected

3) If using checkbox selection, the checkbox in the header does select all, but the button does not.


The "select all" button will select all of the fields and the select count shows that it isn't just visibility on the grid. (there are 100 items in the example).


Previous versions function correctly.


Note that in IE, it seems like it is trying to scroll the selection into view as the selection takes place (maybe doing so on Chrome too) and that contributes toward loosing the selection.


Also using manual select it seems that if an item is only partially displayed in the window, using multimode and ctrl-click,

5.0.1 with no selection, select say Fred 1 and 2 with ctrl, both select immedately, then scroll to a record outside of the first screen - you will need two clicks to ctrl select.

5.0.x the first click does not select the item, and the second click then brings it fully into the scroll window and allows the click.


The above seems to be an issue in ALL version of 5, but not in 4.2.






SelectionModel.selectAll() broken in 5.0.1.1255

Inconsistent Grid Width

Hi!

I have found that width of the grid differs if there are (no) locked columns. Perhaps it is not a bug however I didn't find a way how it can be fixed correctly. Here is my Fiddle: http://ift.tt/1ozpaPX. I have checked it in Chrome and IE.


Appreciate any help. Thanks.






Inconsistent Grid Width

Using a singleton for constants does not work on production build (2.4)

Hi,

I'm having an issue with the production build of an app we are developing. This issue can be reproduced like this:



  • Create a new Sencha app via Cmd (CMD 5.0.2 and ST 2.4)

  • Add a util folder inside app with a Constants.js file:



Code:



Ext.define('MyApp.Util.Constants',{
singleton: true,
title: 'MyTitle'
});


  • In app.js I added the following:



Code:



requires: [
'Ext.MessageBox',
'MyApp.util.Constants'
],


  • In app/view/Main.js I changed this line:



Code:



items: [
{
title: MyApp.utils.Constants.title,
iconCls: 'home',

This works fine on development and on the testing build, but fails with the following error on the production build:

Code:



Error evaluating http://localhost/app.js with message: TypeError: Cannot read property 'title' of undefined

From my understanding of the Sencha Class system this should work. I'm I doing something obviously wrong?

Thanks for any assistance....






Using a singleton for constants does not work on production build (2.4)

Javascript error when using Ext.data.Types in Ext 5



  1. Thank you for reporting this bug. We will make it our priority to review this report.







  2. Default Javascript error when using Ext.data.Types in Ext 5



    Javascript error when using Ext.data.Types in Ext 5





    Fiddle:

    http://ift.tt/1oyTsT5

    It produce thiserror Error:

    "[Ext.createByAlias] Unrecognized alias: data.field.[object Object] in Ext5 but it works in 4.2."


    If the type is replaced with the short hand 'auto' it also works.


    -Christian















Javascript error when using Ext.data.Types in Ext 5

ComboBox Paging Handling (Bug/Feature?)



  1. Thank you for reporting this bug. We will make it our priority to review this report.







  2. Default ComboBox Paging Handling (Bug/Feature?)



    ComboBox Paging Handling (Bug/Feature?)





    Hi,

    the handling of paging in comboboxes seems not to be fully testet... I have an issue where the picker is always closed, when you change the page.

    I have tracked it down to the "onValueCollectionEndUpdate" function in the ComboBox source file, where the paging is not respected.

    This would be a possible fix:



    Code:



    onValueCollectionEndUpdate: function () {
    var me = this,
    selectedRecords = me.valueCollection.getRange(),
    selectionCount = selectedRecords.length;


    me.updateBindSelection(me.pickerSelectionModel, selectedRecords);
    Ext.suspendLayouts();
    me.updateValue();
    // If we have selected a value, and it's not possible to select any more values
    // or, we are configured to hide the picker each time, then collapse the picker.
    if (selectionCount && ((!me.multiSelect && me.pageSize == 0) || me.collapseOnSelect || !me.store.getCount())) {
    me.collapse();
    }
    Ext.resumeLayouts(true);
    if (selectionCount && !me.suspendCheckChange) {
    me.fireEvent('select', me, selectedRecords);
    }
    }













  3. Default







    Hi,

    I'd like to test this along with you. Can you post a test case demonstrating the issue you're seeing either here or at http://ift.tt/1es0mnV?


    Also, what version of ExtJS are you seeing the issue in?















ComboBox Paging Handling (Bug/Feature?)

Overrideing a EXTJS plugin make sencha cmd fail to build



  1. Thank you for reporting this bug. We will make it our priority to review this report.







  2. Default Overrideing a EXTJS plugin make sencha cmd fail to build



    Overrideing a EXTJS plugin make sencha cmd fail to build





    I generate a Ext JS web application using sencha cmd like:


    Code:



    sencha gen app -sdk "path/to/sdk" MyApp ./MyApp

    And it will create a "override" folder in the project.

    I would like to override a Ext class, so I add a JS file like below in the "override" folder.



    Code:



    Ext.define('Ext.enhance.grid.Panel', {
    override : 'Ext.grid.Panel',
    foo : function() {}
    });



    Then build extjs app,

    It work fine in this case.

    However, when I trying override a plugin like below, it fail.



    Code:



    Ext.define('Ext.enhance.grid.plugin.RowEditing', {
    override : 'Ext.grid.plugin.RowEditing',
    foo : function(){}
    });

    Error message:


    Code:



    [ERR] BUILD FAILED
    [ERR] java.lang.IllegalArgumentException: 0 > -1
    [ERR]
    [ERR] Total time: 11 seconds
    [ERR] The following error occurred while executing this line:
    D:\Ecfa\.sencha\app\build-impl.xml:373: The following error occurred while executing this line:
    D:\Ecfa\.sencha\app\refresh-impl.xml:10: java.lang.IllegalArgumentException: 0 > -1
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
    at net.sf.antcontrib.logic.IfTask.execute(IfTask.java:217)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.TaskAdapter.execute(TaskAdapter.java:154)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at com.sencha.ant.AntScript.execute(AntScript.java:117)
    at com.sencha.command.plugin.PluginManager.execute(PluginManager.java:93)
    at com.sencha.command.plugin.PluginManager.executeReverseFirst(PluginManager.java:134)
    at com.sencha.command.environment.BuildEnvironment.execute(BuildEnvironment.java:246)
    at com.sencha.command.environment.AppOrPackageEnvironment.execute(AppOrPackageEnvironment.java:496)
    at com.sencha.command.BasePluginCommands$BasePluginCommand.doExecute(BasePluginCommands.java:35)
    at com.sencha.command.app.AppCommands$BuildCommand.execute(AppCommands.java:329)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sencha.util.MethodInvoker$Arguments.invoke(MethodInvoker.java:175)
    at com.sencha.cli.Command.dispatch(Command.java:43)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.command.Sencha.dispatch(Sencha.java:73)
    at com.sencha.command.Sencha.main(Sencha.java:141)
    Caused by: The following error occurred while executing this line:
    D:\Ecfa\.sencha\app\refresh-impl.xml:10: java.lang.IllegalArgumentException: 0 > -1
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    at com.sencha.ant.CallTask.execute(CallTask.java:130)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
    at net.sf.antcontrib.logic.IfTask.execute(IfTask.java:217)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.TaskAdapter.execute(TaskAdapter.java:154)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at com.sencha.ant.AntScript.execute(AntScript.java:117)
    at com.sencha.command.plugin.PluginManager.execute(PluginManager.java:93)
    at com.sencha.command.plugin.PluginManager.executeReverseFirst(PluginManager.java:134)
    at com.sencha.command.environment.BuildEnvironment.execute(BuildEnvironment.java:246)
    at com.sencha.command.environment.AppOrPackageEnvironment.execute(AppOrPackageEnvironment.java:496)
    at com.sencha.command.BasePluginCommands$BasePluginCommand.doExecute(BasePluginCommands.java:35)
    at com.sencha.command.app.AppCommands$BuildCommand.execute(AppCommands.java:329)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sencha.util.MethodInvoker$Arguments.invoke(MethodInvoker.java:175)
    at com.sencha.cli.Command.dispatch(Command.java:43)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.command.Sencha.dispatch(Sencha.java:73)
    at com.sencha.command.Sencha.main(Sencha.java:141)
    Caused by: java.lang.IllegalArgumentException: 0 > -1
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:116)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    at com.sencha.ant.CallTask.execute(CallTask.java:130)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
    at net.sf.antcontrib.logic.IfTask.execute(IfTask.java:217)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.TaskAdapter.execute(TaskAdapter.java:154)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at com.sencha.ant.AntScript.execute(AntScript.java:117)
    at com.sencha.command.plugin.PluginManager.execute(PluginManager.java:93)
    at com.sencha.command.plugin.PluginManager.executeReverseFirst(PluginManager.java:134)
    at com.sencha.command.environment.BuildEnvironment.execute(BuildEnvironment.java:246)
    at com.sencha.command.environment.AppOrPackageEnvironment.execute(AppOrPackageEnvironment.java:496)
    at com.sencha.command.BasePluginCommands$BasePluginCommand.doExecute(BasePluginCommands.java:35)
    at com.sencha.command.app.AppCommands$BuildCommand.execute(AppCommands.java:329)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sencha.util.MethodInvoker$Arguments.invoke(MethodInvoker.java:175)
    at com.sencha.cli.Command.dispatch(Command.java:43)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.command.Sencha.dispatch(Sencha.java:73)
    at com.sencha.command.Sencha.main(Sencha.java:141)
    Caused by: 0 > -1
    at java.util.Arrays.copyOfRange(Unknown Source)
    at java.util.Arrays.copyOfRange(Unknown Source)
    at com.sencha.tools.compiler.app.LoaderPathsManifest.processPathMapping(LoaderPathsManifest.java:226)
    at com.sencha.tools.compiler.app.LoaderPathsManifest.load(LoaderPathsManifest.java:83)
    at com.sencha.tools.compiler.app.LoaderPathsManifest.load(LoaderPathsManifest.java:17)
    at com.sencha.tools.compiler.app.AppManifest.load(AppManifest.java:84)
    at com.sencha.tools.compiler.app.AppManifest.load(AppManifest.java:79)
    at com.sencha.command.compile.app.BaseAppOutputCommand.getAppManifest(BaseAppOutputCommand.java:69)
    at com.sencha.command.compile.app.MicroloadCommand.execute(MicroloadCommand.java:108)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sencha.util.MethodInvoker$Arguments.invoke(MethodInvoker.java:175)
    at com.sencha.cli.Command.dispatch(Command.java:43)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.command.compile.CompileCommands.dispatch(CompileCommands.java:299)
    at com.sencha.cli.AbstractCommand.dispatch(AbstractCommand.java:124)
    at com.sencha.ant.CompileTask$CompileToken.dispatchCommand(CompileTask.java:164)
    at com.sencha.ant.CompileTask.doExecute(CompileTask.java:123)
    at com.sencha.ant.BaseAntTask.execute(BaseAntTask.java:32)
    at com.sencha.ant.CompileTask.execute(CompileTask.java:36)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
    at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    at com.sencha.ant.CallTask.execute(CallTask.java:130)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
    at net.sf.antcontrib.logic.IfTask.execute(IfTask.java:217)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.TaskAdapter.execute(TaskAdapter.java:154)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:392)
    at org.apache.tools.ant.Target.performTasks(Target.java:413)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
    at com.sencha.ant.AntScript.execute(AntScript.java:117)
    at com.sencha.command.plugin.PluginManager.execute(PluginManager.java:93)
    at com.sencha.command.plugin.PluginManager.executeReverseFirst(PluginManager.java:134)
    at com.sencha.command.environment.BuildEnvironment.execute(BuildEnvironment.java:246)
    at com.sencha.command.environment.AppOrPackageEnvironment.execute(AppOrPackageEnvironment.java:496)
    at com.sencha.command.BasePluginCommands$BasePluginCommand.doExecute(BasePluginCommands.java:35)
    at com.sencha.command.app.AppCommands$BuildCommand.execute(AppCommands.java:329)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sencha.util.MethodInvoker$Arguments.invoke(MethodInvoker.java:175)
    at com.sencha.cli.Command.dispatch(Command.java:43)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.cli.Commands.dispatch(Commands.java:64)
    at com.sencha.command.Sencha.dispatch(Sencha.java:73)
    at com.sencha.command.Sencha.main(Sencha.java:141)



    I'm using ExtJS 5.0.1, Sencha Cmd v5.0.1.231, and Windows 7 64 bit.













Overrideing a EXTJS plugin make sencha cmd fail to build

bubbleEvents on Ext.mixin.Observable

[unable to retrieve full-text content]Is this a bug? http://ift.tt/1qUeZ8v The 'update' event in header store was not firing.



bubbleEvents on Ext.mixin.Observable