Search Type: Posts; User: hendricd

Page 1 of 5 1 2 3 4

Search: Search took 0.24 seconds.

  1. Got a code sample that shows the goal?
  2. @LOLO:

    Your approach might be a bit over-engineered. Simplify by targeting one of the base proxy classes and route your exceptions through something native to all Controllers (any component):

    ...
  3. @Les,

    In the init method of your Application controller:



    init(application) {
    // <debug>
    application.devMode = true;
    // </debug>
  4. Replies
    7
    Views
    811
    The thing to remember with loading from a file system - is the lack of a Content-type header. Without it, the XHR object will not parse and construct the required responseXML object. When reading...
  5. 8888 vs 80 breaks the same-origin-policy rules, which would generally yield an OPTIONS pre-flight request that Jersey doesn't like much ;)
  6. Replies
    870
    Views
    256,955
    @sid --

    It would be best if you let the hosted page (in the frame) control scrolling of it's <body> tag. IE does not permit overriding the overflow features of a nested document.
  7. Think of xtype as a 'shorthand' name for a class.

    They are visible on the Header of every class in the online documentation:
    ...
  8. Replies
    3
    Views
    1,275
    @supergui --


    deferredRender : false

    belongs on the TabPanel config, and the view Panel should not have a layout and should not be shown -- just create the Viewer instance and let the TabPanel...
  9. Bah, you deserve a better response than that :)

    If you're planning screencasts, you might consider exercises that involve using existing heavier /examples (Theme Viewer comes to mind). Open the...
  10. When they've mastered CSS selector precedence, it should become natural. :-?
  11. ComponentQuery, ComponentQuery, ComponentQuery !

    The 'stepping stone' to the understanding of MVC plumbing!
  12. Replies
    19
    Views
    9,997
    @jonasba -- Nicely done =D>

    Succinct and very clean.

    Thought I'd offer a couple suggestions for Component structure and script performance if you're game. ;)

    These listeners appear a bit...
  13. @alfa --

    ToolTip.setTarget expects an Element (or Element.id) reference. Use:

    tip.setTarget(form.getEl());
  14. Replies
    31
    Views
    2,480
    Thanks Don ;)
  15. Replies
    31
    Views
    2,480
    @Daniil --

    Glad you've got a work-around. I'll admit, I'm head-scratchin' the 'silent errors issue' this creates. I'll kick this around a bit internally. ;)
  16. Replies
    31
    Views
    2,480
    Sorry, yes, you are correct.

    The Task created by the Animation sequence cannot be defined or influenced by the current Window.show method (the deeply nested problem I was referring too). ;)
    ...
  17. Replies
    31
    Views
    2,480
    @Daniil --

    The Window.show callback is managed by the (deeply nested) Animator and TaskRunner is not even involved there.

    For maximum control, your best bet would be to setup a try{}catch right...
  18. Replies
    3
    Views
    748
    @FG1 --

    Here is a simple Controller class you can use to:

    work out the timing kinks
    get a useful reference to the field that HAD focus
  19. Replies
    5
    Views
    1,375
    Modular CSS == cool!

    IE's limit of 31 styleSheets, a burden.

    (:|
  20. Replies
    31
    Views
    2,480
    @Daniil -

    TaskRunner was re-written for 4.1 to allow for an onError callback function to be specified on the Task:



    var config = {
    run : function() {},
    interval : 1000,...
  21. @ridasfa1--

    To qualify as a 'same-origin' request, the following conditions must be met:

    The protocol (https://) must be the same as origin (page load)
    The port must also be the same as...
  22. Replies
    870
    Views
    256,955
    @brookd:

    Try one or more of these overrides for Ext.Layer. Your focus should be there. The Visibility plugin, MIF, or uxMedia have nothing to do with your symptoms. The z-order of Window...
  23. Replies
    870
    Views
    256,955
    @alexei --

    Such events would only work for same-origin frames ;)
  24. @ALL

    MIF 4.0x will NOT work with Ext 4.1!

    Once again, as the internals of Ext 4.1 have changed, a new version of multidom.js will be required. I have started on the port, and should be...
  25. @dady1981 --

    Start with:


    layout : 'fit'

    in your Window !
Results 1 to 25 of 115
Page 1 of 5 1 2 3 4