Search Type: Posts; User: GFI_SI

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Ok i got it working again

    Set the requires array in the view and in my settings view changed the alias (widget.settings) to xtype (settings).
  2. *sigh*

    The problem now is my tab panel doesn't change tabs.
  3. in my view I've added :



    requires : [
    'MyApp.view.Login',
    'MyApp.view.Profile',
    'MyApp.view.Settings'
    ],
  4. I'm finding it hard to understand what you're saying.

    I've not put it in my controller or the functionality to use 'views: ' has been removed from controllers and will be coming back in a future...
  5. I'm confused. That's what I have in my controller.

    I still get the error.
  6. In my Viewport controller



    views : ['Login', 'Profile', 'Settings'],


    The viewport view and controller are being loaded however, but they are both set in the app.js.
  7. It appears as though my views are no longer loading.
  8. Something to do with aliases.

    If I replace



    { xtype: 'settings', title: 'Settings', iconCls: 'settings' }


    with
  9. Is there a list of changed xtypes in the RC? Because literally all I did was replace the old beta 3 sencha touch folder with the new release candidate folder.
  10. Anyone know what this is? I get the error



    Uncaught TypeError: Cannot call method 'substring' of undefined. sencha-touch-all.js:15


    After going from Beta 3 to the RC that was released 2...
  11. Can controllers only be dynamically loaded from within the app.js ? When I move them there, they behave as expected.
  12. I have a login, profile and settings view and a controller for each. In my viewport controller I define as follows.



    Ext.define('testapp.controller.Viewport', {
    extend:...
  13. Replies
    3
    Views
    1,055
    I'm having problems here : http://www.sencha.com/forum/showthread.php?181304-Store-loads-from-proxy-but-nestedlist-still-empty.-No-errors.-MVC-structure.

    I can't show data in my nested list and...
  14. Replies
    3
    Views
    1,055
    I was wondering if anyone has experience of using Lawnchair for local storage and using data from Lawnchair to populate lists for example. Does anyone have examples or links to examples where this is...
  15. This doesn't work for me. Marking it as the best answer in this particular situation is misleading.
  16. http://stackoverflow.com/questions/7799747/getting-a-refernce-to-an-auto-instantiated-sencha-touch-2-view

    This might help me
  17. Sounded promising, but still I get an undefined object back.

    Not having much luck with this at all.
  18. I think there is also a difference in the store type. Nestedlist takes a treestore. I don't think list does.
  19. Replies
    10
    Views
    2,219
    I'd probably do something similar. It's how I've validated fields in ExtJS 2 (I'm old school). Just have a keyup listener and compare the value in the field to a regex or some other validation rule....
  20. What is the warning? Also, you should try setting some listeners on your store to check that the data is being loaded. You can use a before load listener to check that it's instantiated and then a...
  21. Having read the aPI docs it seems that the 'addrecords' event is fired when new records are added to the store as opposed to records being loaded the first time.

    The 'load' event fires for the...
  22. For my application, for which development is going extremely slowly, I've been using the tabpanel container to provide the main navigation for my application...

    Essentially my Main creates a...
  23. I added the following listener handler to my store to see if the records where being loaded.



    constructor: function() {
    this.callParent(arguments);
    this.on('load',...
  24. I'm creating a new Viewport which is essentially a tabpanel.



    var oViewPort = Ext.create('MyApp.view.Viewport');


    My Viewport looks like this
  25. Has anyone tried this before? Should I be looking for another UI framework to do this?
Results 1 to 25 of 34
Page 1 of 2 1 2