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. studio511
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 20
    • Best 0
    • Groups 0

    studio511

    @studio511

    0
    Reputation
    5
    Profile views
    20
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    studio511 Follow

    Latest posts made by studio511

    • RE: Virtualization for QTree

      @baye hi, did u manage to find a solution to this.
      I have the same issue. Tried q-virtual-scroll with the tree but when used together it appears that the tree is defaulted to expanded all … it improves the load but not overall performance…

      posted in Framework
      S
      studio511
    • RE: Qtree search filter very slow when number of nodes is 1000s. How to optimize it?

      @dobbel i tried to do deepfreeze to all my objects. as long as the whole tree is not fully expanded, individual clicking on the nodes looks open. but once on the nodes are expanded (with all the children nodes opened) … clicking on each nodes (even a level 1 node with just 1 child & no subchild) becomes very delayed. wondering what else or what have people been doing otherwise to handle the massiveness of a tree

      posted in Help
      S
      studio511
    • RE: Qtree search filter very slow when number of nodes is 1000s. How to optimize it?

      @dobbel hi, i tried the expandAll() nodes function with the tree that has a large number of nodes and even when i’ve already freeze the nodes object, when i do the expandAll function ($ref.Tree.expandAll()), the expansion is slow… how else can i improve this?

      posted in Help
      S
      studio511
    • RE: Qtree search filter very slow when number of nodes is 1000s. How to optimize it?

      @dobbel thanks! it helped in the fast loading of nodes significantly!

      posted in Help
      S
      studio511
    • RE: Qtree search filter very slow when number of nodes is 1000s. How to optimize it?

      @hpawar hi, did you eventually manage to resolve this ? i got hit when processing large number of nodes as well.

      posted in Help
      S
      studio511
    • RE: Getting the height of the horizontal q-splitter

      cool i used <q-resize-observer> eventually and it works nicely:
      <q-splitter …>
      …
      <template v-slot:after="" >
      <q-resize-observer @resize=“onResize” :debounce=“0” />
      …
      </template>
      </q-splitter>

      <script>
      …
      methods: {
      onResize ({ width, height }) {
      this.splitterheight = height
      console.log(‘get resize’, width, height)
      },
      }
      </script>

      posted in Help
      S
      studio511
    • Getting the height of the horizontal q-splitter

      I am using a q-splitter which splits my app horizontally.
      I wish to get the height of the splitter so that i can adjust the content sizing accordingly when i move the splitter up or down.
      Any ideas how to get the height of the splitter when i shift this splitter dynamically up or down?

      posted in Help
      S
      studio511
    • RE: Q-splitter height

      hi if you are tracking windowsize, maybe you should use computed to capture the change in window size.
      eg:
      computed: {
      return {
      heightStyle: this.$q.window.screen.height + ‘px’
      }
      }

      posted in Help
      S
      studio511
    • RE: q-splitter hide scrollbar y

      ok thats what i did eventually:
      <style lang=“sass”>
      .q-splitter
      &__before
      overflow: auto
      &__after
      overflow: hidden
      </style>

      posted in Framework
      S
      studio511
    • RE: q-splitter hide scrollbar y

      hi i am trying to achieve the same and i figured that one way is to hide the overflow. So in my split i only want to hide the q-splitter after.
      In sass: it could be configured to:
      .q-splitter__after
      {
      overflow: hidden;
      }.
      However, i do not know how to put this in my script (not versed in style/css editing).
      Have you got a solution?

      posted in Framework
      S
      studio511