Looks like we can't reproduce the issue or there's a problem in the test case provided.
  1. #11
    Sencha User
    Join Date
    Feb 2010
    Posts
    4
    Vote Rating
    0
    ecbelluomini is on a distinguished road

      0  

    Default MVC EVENTS fires twice

    MVC EVENTS fires twice


    I am with similar problem. Events fires twice using ext js 4.2.0.663gpl.

    Attached is an example of the code where the problem occurred.
    Attached Files

  2. #12
    Sencha User medley's Avatar
    Join Date
    Apr 2008
    Location
    Luxembourg
    Posts
    128
    Vote Rating
    0
    medley is on a distinguished road

      0  

    Default


    Hello,


    My problem is solved.
    With Extjs 4.1.1a, I had this code :
    Code:
    var navigation = me.getController('Navigation');
    navigation.init();

    With Extjs 4.2.0, I have this code :
    Code:
    var navigation = me.getController('Navigation');

    I removed the call to the function "init" because it is automatically called when the function getController is called.


    Regards
    Medley

  3. #13
    Sencha User
    Join Date
    Feb 2010
    Posts
    4
    Vote Rating
    0
    ecbelluomini is on a distinguished road

      0  

    Default


    Hello.

    Removing the call to the init function really solved the problem.

    Thank you very much.