Search Type: Posts; User: tine_m

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    498
    if you are building css files from scss, make sure, that your "config.rb" has correct path to sdk folder. Note that now "sdk" folder is renamed to "touch", so you may have to fix that. Then compile...
  2. Replies
    5
    Views
    1,127
    I have about 52 views on web app that loads in about 5s on phone without HTML5 cache. I can give you few tips:

    when navigating the app try to load every view dynamically and destroy views that...
  3. I have the same problem. Has anyone found a solution/workaround yet?
  4. I think it's chrome and CSS...

    I have same problem since I've upgraded Chrome. Same thing with titles in title bar.
    You can decrease padding in CSS style .x-title .x-innerhtml:


    .x-title...
  5. Replies
    22
    Views
    3,051
    I found a solution... It doesn't look nice, but it worked...


    Ext.Loader.setPath({
    'Ext': 'touch/src',
    'Ext.ModelManager': 'touch/src/data/ModelManager.js',
    });


    I guess I did it the...
  6. Replies
    22
    Views
    3,051
    Hey guys!

    Thanks for the "loader.setPath" tip. But now I got new error:


    [Ext.Loader] Failed loading 'touch/src/ModelManager.js'

    any idea why?
    I have manually upgraded my web app by...
  7. got it working!

    just add to PATH location of JavaRE bin.

    for example:
    C:\Program Files (x86)\Java\jre6\bin
  8. same thing here... :(
  9. Can you provide an example how you load your list and itemtap listener?
  10. if you are using list without a store try (re)loading data like this:


    if (myList.getStore() != null)
    myList.getStore().removeAll();
    myList.setData(newData);
  11. Replies
    14
    Views
    10,593
    If you use microloader, then make sure that you put localization script (for example "locale/ext-lang-si.js") into your app.json like this:


    {
    ...
    "js": [
    {
    "path":...
  12. Replies
    14
    Views
    10,593
    Hi!

    I was searching for that topic (for SENCHA TOUCH 2) on the internets for hours without any luck.. I wondered how to apply the JS file found in /src/locale/ to the sencha app, but whatever I...
Results 1 to 12 of 12