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. IO2021
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 7
    • Best 1
    • Groups 0

    IO2021

    @IO2021

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

    IO2021 Follow

    Best posts made by IO2021

    • RE: How to achieve v-ripple effect on table rows?

      @dobbel @beets
      Works perfectly!!!
      Save my life, thank you. πŸ™‚πŸ‘πŸ»

      posted in Help
      I
      IO2021

    Latest posts made by IO2021

    • SSR Deployment(Vercel / Netlify)

      What I tried is:

      • (Import Git repository)-deploy quasar (spa) on (Vercel/Netlify)
        Build command: quasar build -m spa
        Directory: dist/spa

      Result: work

      • (Import Git repository)-deploy quasar (ssr) on (Vercel/Netlify)
        Build command: quasar build -m ssr
        Directory: dist/ssr

      Result: not work

      Vercel - shows the content of index.js
      θž’εΉ•εΏ«η…§ 2021-01-20 上午11.49.54.png

      Netlify
      θž’εΉ•εΏ«η…§ 2021-01-20 上午11.50.21.png

      • deploy quasar (ssr) on Vercel with vercel.json

      Result: not work (same result)

      Does vercel/netlify support ssr deployment? How to make it successfully deployed on vercel/netlify?

      thnaks~ πŸ™‚

      posted in Help
      I
      IO2021
    • RE: How to achieve v-ripple effect on table rows?

      @dobbel @beets
      Works perfectly!!!
      Save my life, thank you. πŸ™‚πŸ‘πŸ»

      posted in Help
      I
      IO2021
    • How to achieve v-ripple effect on table rows?

      I hope every row has a ripple effect,
      But when I use v-ripple on q-tr,

                  <template v-slot:body="props">
                    <q-tr v-ripple :props="props" @click="theRow(props)">
                      <q-td key="a" :props="props">
                        {{ props.row.a }}
                      </q-td>
                      <q-td key="b" :props="props">
                         {{ props.row.b }}
                      </q-td>
                    </q-tr>
                  </template>
      

      the effect is not as expected link

      How to achieve it? Thanks.

      posted in Help
      I
      IO2021
    • RE: Can Qscrollarea be implemented in Qtable?

      @metalsadman

      okay, thanks πŸ™‚

      posted in Help
      I
      IO2021
    • RE: Can Qscrollarea be implemented in Qtable?

      @metalsadman
      Actually, I want to use it in dynamic virtual scroll table (the red part) , but if I try to use the above code, the effect is the blue part.
      θž’εΉ•εΏ«η…§ 2020-08-31 δΈ‹εˆ7.15.25.png

      posted in Help
      I
      IO2021
    • Can Qscrollarea be implemented in Qtable?

      I tried adding Qscrollarea code to dynamic virtual scroll table, but it was unsuccessful

      <q-scroll-area style="height: 200px; max-width: 300px;">
       <q-table
        class="my-sticky-dynamic"
        :data="data"
        :columns="columns"
        :loading="loading"
        row-key="index"
        virtual-scroll
        :rows-per-page-options="[0]"
        @virtual-scroll="onScroll"
       >
       </q-table>
      </q-scroll-area>
      

      Can Qscrollarea be implemented in Qtable?

      posted in Help
      I
      IO2021