Search Type: Posts; User: Scorpie

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    1,066
    Is this modeled after Promises/A ?
  2. Replies
    35
    Views
    11,613
    You could do it yourself. =D>
  3. I did something similiar using, will look into it tomorrow for you
  4. Replies
    17
    Views
    12,292
    Try this version:




    /**
    * Ext.ux.IconCombo Extension Class for Ext 4.1 Library
    *
    * @author Daniel Kuhnley
    * @class Ext.ux.IconCombo
  5. Replies
    268
    Views
    54,634
    Use a proxy, a model, a store and the grid. Check out the kitchen sink example for xml.
  6. Replies
    6
    Views
    156
    store.load({
    callback:function(records, operation, success){
    console.log(store.getCount());
    console.log(store.getAllCount());
    },
    scope:this
    });
  7. You wish to get a specific record by ID from a store?



    // your store
    var store = new Ext.data.Store();
    // store is loaded somewhere
    store.load();

    // get records
  8. We had the same issue. We packaged the kitchensink as an app on an iOS device and noticed a significant performance boost. Try it out for yourself. If you are developing for Android I would recommend...
  9. Post some code :)
  10. Replies
    4
    Views
    229
    http://www.sencha.com/blog/new-themes-in-sencha-touch-2-2/ can give you an answer I guess.
  11. I started from scratch, haven't regret that decision one second.
  12. Using 2.2 following code still generates the warning Ext.fx.animation.Abstract#applyAfter] Invalid config, must be a valid config object:



    panel.hide({
    type: 'slide',
    ...
  13. I can recommend Ubergrid. Very powerful and very easy to use.
  14. The way I upgraded was to generate a new app with 2.1 and move my /app structure from the old project into the newly generated one.
  15. I see. I have never used it on the id field before but maybe http://docs.sencha.com/touch/2.2.0/#!/api/Ext.data.Field-cfg-persist can help you out?
  16. You are probably overnesting. The best approach to fix this is to look at your code and draw out your layouts. I found most problems are with Tabpanels because they have the tendency to be extremely...
  17. Of course Touch can do this, it will however not be best practice to do so. In basic terms, Touch generates HTML, nothing more, nothing less. You can always stuff a container full of html/css or...
  18. You can configure the id part of the model itself. See http://docs.sencha.com/touch/2.2.0/#!/api/Ext.data.Model-cfg-identifier to change the identifier to an (custom) Identifier type (see...
  19. Create a custom class that will read the database records created by cordova and that will populate a Store with setData() method. After that, you can use the store to populate a list/dataview/grid.
  20. Nope. It will create a barebone project, not package it.
  21. It is however possible to build the kitchensink demo as an app :) just create a barebone project with Sencha CMD and place the contents of the kitchensink app in /app. After that, modify the...
  22. Upgrade to 2.2 :)
  23. Thanks :) just posted it over there :D
  24. Just purchased this wonderfull product. I`m however stuck on a simple issue; is it possible to nest the grid in a hbox layout in a tabpanel?
  25. Replies
    268
    Views
    54,634
    +1 :)
Results 1 to 25 of 117
Page 1 of 5 1 2 3 4