[CLOSED] TreeList in (nav/micro) doesnt collapse after click

  1. #1

    [CLOSED] TreeList in (nav/micro) doesnt collapse after click

    Support,

    pls review example: https://examples4.ext.net/#/TreePanel/List/Overview/

    set micro AND nav mode.

    then move over users and click "Tagged"

    in NAV mode, i expect than when i navigate to a link, it would close the treelist so the new page loads.

    however, the treelist remains open.

    please let me know how it can close as soon as a click is made.

    i would expect this to be the default.

    thanks,.
    /Z
    Last edited by fabricio.murta; Feb 01, 2019 at 1:00 PM.
  2. #2
    Hello @Z! Sorry for the delay in replying your inquiry!

    Although the Ext.list.Tree.micro mode looks like a menu, it isn't really one, so this behavior is just not set up in this example. The same can be noticed if you open the corresponding Sencha example.

    While the example is meant to work that way (just move the mouse away and the treeList should be gone), I understand you may just want that funcionality; dismiss on click. This is not a supported behavior of the TreeList component, so make sure to leave notes/comments about the change, but the way it internally works now to dismiss the popped menu is by calling the its undocumented unfloatAll() method.

    For the example you pointed, adding a block like this to the handleTLSel() client-side code to the tree will allow the hide-on-select behavior:

    if (me.getMicro()) {
        me.unfloatAll();
    }
    Again, please take note this is not a supported feature and the method we're exploring to easily add the functionality may stop working next version without prior notice.

    Hope this helps!
    Fabrício Murta
    Developer & Support Expert
  3. #3
    Works
    Thxs!
  4. #4
    Hello again, @Z!

    Glad it helped, thank you very much for your kind feedback!
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. [CLOSED] TreeList selection
    By Z in forum 4.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 02, 2019, 3:06 AM
  2. Replies: 1
    Last Post: Mar 20, 2014, 8:49 PM
  3. Replies: 6
    Last Post: Jul 24, 2012, 7:23 PM
  4. Replies: 2
    Last Post: May 12, 2011, 9:26 AM
  5. Replies: 3
    Last Post: Sep 13, 2008, 10:09 AM

Posting Permissions