Search Type: Posts; User: interfasys

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    182
    Things have completely changed for 2.2. Read the doc.
  2. Replies
    4
    Views
    182
    This works as intended, neither "bookmarks" nor "organize" are part of the Pictos font.

    Try "favorites" instead of "bookmarks".
  3. No biggie, but all the notes in http://cdn.sencha.com/touch/sencha-touch-2.2.0/release-notes.html for 2013 are wrong and are showing 2012 instead.
  4. I think you should file this a separate request. It won't be fixed for the final release tomorrow, but hopefully a solution will be provided shortly.
  5. I've upgraded to 3.1.1.270 and the way things are merged are worse in my opinion. With a previous version of cmd, we were left with two files, the old one and the new one which was freshly generated....
  6. From the 2.2 documentation, use http://icomoon.io to create your icon fonts. pictos-iconmask has been binned.
  7. Here are all the icons: http://pictos.cc/font/
    Save the picture in your SDK doc folder for easy access.

    And regarding the inclusion of your own icons, you have to install a software which can...
  8. I see the same behaviour on 2.2b1.
    Tested on a Dev Alpha A.
  9. Yes, that's the component I've been using, but it disappeared in 2.2b1. Would be great if someone could let us know if it was an accident or what does Sencha plan on doing regarding OS components.
    ...
  10. From the release notes:

    There is no sign of Crosscut.js anywhere.
    Ext.Sheet has a "widget.crosscut" alias, but that component offers nowhere near what's required to make the component behave like...
  11. I wanted to upgrade my Sencha Touch SDK to 2.2b1, so I did a
    > sencha app upgrade <SDK>
    and the script tried to merge the basic app.js skeleton with my app.js which is totally different since it's...
  12. Will do! :)
  13. Sencha Touch version tested:

    2.2
    OS tested against:

    BlackBerry 10
    DOCTYPE tested against:

    HTML5
    Description:
  14. I need to "reveal" an off-screen toolbar and while looking for solutions, I ran into a serious performance issue when using Ext.Animator vs what you can get by simply using draggable. It's similar in...
  15. Yes, all the methods of the super class which are specific to that profile.

    Per example, View1 had a onItemSwipe method which Child1 and Child2 were calling.
    Now onItemSwipe has been implemented...
  16. The current icon mixin in the base theme in 2.2 takes only 1 argument, the name, and automatically generates icons for .x-tab and .x-button.

    The problem is that some themes will have extra...
  17. Let's say I have the following views:
    View1
    Child1
    Child2

    Child views extend View1.
    Now I need to introduce profiles for both View1 and Child1 and things will look like this:
    View1
    Child1...
  18. This should do in the mean time:


    // target is the ListItem that you want to modify
    var clsList = target.getCls().slice(),
    clsToCheck = "my-css";

    if (clsList.indexOf(clsToCheck) == -1) {...
  19. Ext.dataview.component.ListItem has both addCls and removeCls, it only makes sense to also have hasCls.
  20. While we wait, this might work for some of you. Edit your build-impl.xml and add this:


    <target name="-after-page">
    <if>
    <equals arg1="${args.environment}"
    ...
  21. When building an app, we already have pre and post hooks for building the "page" and the css, but it would be useful to be able to intervene during the compilation process since it includes several...
  22. The simplest way would be to invoke the browser, using a special posting URL with the content encoded in a variable.
  23. The problem with this approach is that every launch() method of our controllers will be called before we get a chance to instantiate our views. The workaround is to rename the launch() methods and to...
  24. It would, yes :)
  25. The temp fix is to edit touch/src/core/class/Class.js
    In ExtClass.registerPreprocessor, comment out

    if (Ext.filterPlatform(platform)) {
    Ext.merge(config, platformConfig);
    }
Results 1 to 25 of 113
Page 1 of 5 1 2 3 4