Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. zwiebel_s
    Z
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 4
    • Best 0
    • Groups 0

    zwiebel_s

    @zwiebel_s

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    zwiebel_s Follow

    Latest posts made by zwiebel_s

    • RE: Scrolling inside a q-table

      @Hawkeye64 yes but the scrolling in my example is in the q-table and not on the page

      posted in Help
      Z
      zwiebel_s
    • Scrolling inside a q-table

      Hello all,

      I have a Quasar layout with a q-table that resizes as the window expands. The table also has a fixed table header. My requirement is that you can scroll the table using the 3 sticky buttons (I am not sure if it is right to work with “q-page-sticky” elements.). The scroll-to-top button should only be visible when the user scrolls in the table.

      Here a codepen:
      https://codepen.io/tbr2021/pen/xxEaaRY

      I tried out methods like:

      scrollUp () {
        var table = document.getElementsByClassName('test')
        table.scrollTop = 500
      },
      

      or with a ref

      scrollTop () {
        this.$nextTick(function () {
          this.$refs.testDiv.scrollTop = 0
        })
      },
      

      but both didn’t work.

      Maybe someone can help me out with this…

      posted in Help
      Z
      zwiebel_s
    • RE: QGroupedTable multiple groups

      @metalsadman thanks i’ve opened an issue on github

      posted in Help
      Z
      zwiebel_s
    • QGroupedTable multiple groups

      I’ve found this nice extension from Narcis13

      https://github.com/Narcis13/quasar-grouped-table

      Would it be possible to group by multiple fields? Aggregation of grouped values would also be nice.

      I use the Grid from Kendo Ui right now (https://demos.telerik.com/kendo-ui/grid/index) but i’m thinking of switching to quasar completly.
      Unfortunately multiple grouping is a must have in my use case.

      posted in Help
      Z
      zwiebel_s