Search Type: Posts; User: Phil Guerrant

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. The Web Desktop contains an example implementation of maximizing and minimizing windows. Source code can be seen here http://docs.sencha.com/extjs/4.2.0/extjs-build/examples/desktop/js/Desktop.js
  2. The fix was not included in the latest beta, but it will be in the GA release
  3. This issue has been fixed and will be available in the GA release of Ext JS 4.2.1
  4. Or just increase their specificity


    .x-field input.userName { ... }
  5. Any warnings in your console prior to the error occuring?

    Any way you could narrow it down to a small enough test case that you could attach to this thread so we can try and debug on our end?
  6. Replies
    44
    Views
    24,022
    The neptune theme is officially supported in IE7 and above, both strict and quirks modes. We excluded IE6 because of it's lack of support for PNG alpha-transparency, since neptune uses PNG icons to...
  7. The error occurs because the mixin in ext-theme-neutral gets automatically called with "default" as the UI name, and when you copied the file into your theme, it calls the mixin a second time with...
  8. Can you give us any more information on what you were doing when you got this error? What are the steps we can take to reproduce it?
  9. You might want to ask for help in the sencha touch forum http://www.sencha.com/forum/forumdisplay.php?89-Sencha-Touch-2.x-Forums

    Although the approach to creating themes is similar between...
  10. Thanks for offering. Feel free to post your wishlist here, and I'll open a ticket for it. Just list the component sand the things that you wish were configurable via mixin but aren't currently, and...
  11. Your use of the show() method is incorrect, the second parameter is a callback function, not an align position.


    btn.menu.show(btn.el, btn.menuAlign);

    I think the method you are looking for is...
  12. One minor improvement to the override. Replace this:

    if (Ext.isBorderBox && !this.ownerCt) {

    with this:


    if (Ext.isBorderBox && (!me.ownerCt || me.floating)) {

    To ensure that floating...
  13. I've added a fix in Ext JS 4.2.1 that adds the x-border-box class to top level components instead of the html tag. Here's an override that you can use in 4.2.0:



    Ext.define('Ext.BorderBoxFix',...
  14. In Ext 4.2 most of the the global CSS reset rules were removed, and so scoped CSS was removed since the hope was that it would no longer be needed. In Ext 4.2 we are only setting the following...
  15. Just curious, what are you trying to do here? Is there a missing feature from the extjs-window-ui mixin? Perhaps a new parameter that needs to be added?

    There are 2 problem with overriding UI...
  16. In Ext JS 4.2.0 - docs here: http://docs.sencha.com/ext-js/4-2/
  17. The neptune theme refactor created variables for just about everything that used to be hardcoded. Please create a new thread if you find anything that you think should be configurable using a...
  18. The slicer does not handle creation of icons for tools, combobox triggers etc. The slicer currently only creates images for the rounded corners and background-gradients of components.

    For themes...
  19. Replies
    1
    Views
    275
    Thanks for the report! I have opened a bug in our bug tracker.
  20. Since JavaScript does not provide any access level control of an objects members, in Ext JS we put all class members on the class' prototype and use the @private and @protected tags to indicate the...
  21. Could you post a test case so we can try to reproduce the bug?
  22. Yes, this is still in the pipeline for a future release, hopefully 4.2.
  23. @aimarsouri That sounds like a good question to ask in the Sencha Architect forums: http://www.sencha.com/forum/forumdisplay.php?98-Sencha-Architect-2.x-Help-amp-Discussions
  24. Replies
    3
    Views
    359
    allowCopy is a config on the view. http://docs.sencha.com/ext-js/4-1/#!/api/Ext.tree.plugin.TreeViewDragDrop
  25. Replies
    3
    Views
    359
    Please refer to the docs for the DragDrop plugin http://docs.sencha.com/ext-js/4-1/#!/api/Ext.grid.plugin.DragDrop

    You can configure the view with "allowCopy" to copy the node only when CTRL is...
Results 1 to 25 of 84
Page 1 of 4 1 2 3 4