Search Type: Posts; User: vadimv

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Have you tried to use the 'api' config ?
  2. Take a look at Sencha Cmd
  3. You are using the wrong files/approch. Needed ones are created in production build, which summed up make around 1-2 MB for small app - quite medium app.
  4. Replies
    1
    Views
    82
    what's in your first page ? has a store or container based component with a mask configured ? look in documentation to related classes at mask config to know how to disable it.
  5. Replies
    3
    Views
    184
    If you think that's the right namespace for you(I just gave you a hint) then yes, you can create a folder in the app directory, that's ok. You can even take a look at ST default examples: Oreilly,...
  6. Replies
    9
    Views
    203
    don't forget to mark answered
  7. Replies
    3
    Views
    184
    I would
    - define or extend a class(could be a proxy), it may be a singleton, in current app space : MyApp.util.Proxy or MyApp.data.proxy.User if is specific to Users not to entire app, or...
  8. Replies
    9
    Views
    203
    There's no any.
    You could try to query with container.down, using xtype as selector, to get all components you need to update. Or query by attributes(see...
  9. style config applies to root element. If you use styleHtmlContent: true, then to root element is appended (a new) child innerHtmlElement which contains the html you have specified, so, if you want to...
  10. Replies
    9
    Views
    203
    yes, there are better, recommended ways, including using itemIds.
  11. Replies
    9
    Views
    203
    :) is not recommended to assign ids to Components or to use Ext.getCmp. Anyway in case you still think to use it then the only way is to loop through Ext.ComponentManager.all.map
  12. you could try to make your custom dataview item and factory items according to dataview item types. http://www.sencha.com/blog/dive-into-dataview-with-sencha-touch-2-beta-2/
  13. Replies
    9
    Views
    203
    that method returns a component by id, not an element.
  14. Replies
    4
    Views
    121
    A hybrid native app or the browser, both run in a Webview.
  15. The reason of the style issue is in this css:



    .x-form .x-scroll-container {
    background-color: #eee;
    }
  16. Replies
    4
    Views
    121
    Local storage behaves the same, no matter the app is deployed natively or is in browser, it's saved in browser cache. Once user deletes the cache the data is lost.

    If you want a better...
  17. what you want to achieve by configuring scrollable for the tabbar ?
  18. submit works within the form only. My suggestion was to use a tabpanel with formpanels as tabs, would have more sense.
  19. look at second argument of query method: http://docs.sencha.com/touch/2.2.1/#!/api/Ext.ComponentQuery-method-query
  20. you use FormPanel in the wrong way. Correct way is: parent should be a tabpanel with form panels as its items.
  21. btw, I see you have used an Ext.Panel as a container for the items, not sure why, but just a hint: you may try to use an Ext.Container, which is lighter.
  22. I'm not sure I've understood what you need, but every view instance has its configs, data, elements...impossible to have 1 registered view in 2 parent components.

    When you query for an xtype, the...
  23. Replies
    13
    Views
    223
    inspect the element and see what's there. also try : $include-default-icons: false;
  24. Replies
    13
    Views
    223
    Look, is simple, just go to that site, customize your font, copy it to the folder where sencha's pictos are. Then in your sass file load the font and add icons classes:



    //Load font
    @include...
  25. Replies
    13
    Views
    223
    sure, you can use "data-icon", icomoon's approach:


    '<div data-icon="your_icon_id"></div>',
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4