No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tags
    3. q-tree
    Log in to post
    • F

      Q-Tree: How to retrieve the filtered nodes instead of the entire nodes
      Help • filter q-tree • • Florentin

      8
      0
      Votes
      8
      Posts
      547
      Views

      F

      @xdesai Thanks a lot, it’s perfectly what i was searching for 😉

    • J

      How to make q-tree horizontal instead of vertical, for big/wide screens?
      Framework • q-tree • • jitendra16

      12
      0
      Votes
      12
      Posts
      550
      Views

      J

      @metalsadman As of now, i am implementing https://github.com/hukaibaihu/vue-org-tree, but will move to q-tree in future.

    • V

      [SOLVED] Not able to use QPopupEdit inside default-header (scoped-slot) of QTree component
      Help • error q-popup-edit q-tree quasar v1.0.0 scoped-slot • • vonSansberg

      5
      0
      Votes
      5
      Posts
      475
      Views

      metalsadman

      @vonSansberg kind of late, but glad I could help 🙂

    • P

      Calling <q-tree> component methods
      Help • q-tree • • pavarine

      2
      1
      Votes
      2
      Posts
      1760
      Views

      P

      Give the tree component a ref
      <q-tree
      ref=“tree”
      :nodes = “companySetup”
      :selected.sync=“selected”
      …

      Then use it like this:
      methods: {

      nodeExists(key) { return this.$refs.tree.getNodeByKey(key) }, getSelectedNode() { return this.$refs.tree.getNodeByKey(this.selected) },