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. qjh
    Q
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 4
    • Best 0
    • Groups 0

    qjh

    @qjh

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

    qjh Follow

    Latest posts made by qjh

    • RE: q-loading and scollIntoView

      the el is selected fine. But the scrolling does not happen.

      posted in Help
      Q
      qjh
    • RE: q-loading and scollIntoView

      Yes, I did. Loading part works, but I could not make scrollIntoView() work.

      posted in Help
      Q
      qjh
    • q-loading and scollIntoView

      If I use q-loading, I can’t use scrollIntoView() method. Any advice? Thanks!

      this.$q.loading.show()
      this.$q.loading.hide()
      
      this.$nextTick(() => {
        if (this.$route.hash) {
          const el = document.querySelector(this.$route.hash)
          el && el.scrollIntoView()
        }
      }
      
      posted in Help
      Q
      qjh
    • Quasar's fix for appearing/disappearing scrollbar moving content

      Hello,

      What is Quasar’s fix for appearing/disappearing scrollbar moving content? I have the issue with my quasar project. I tried many solutions found on the web (e.g. https://stackoverflow.com/questions/1417934/how-to-prevent-scrollbar-from-repositioning-web-page) but found no one that works. Quasar seems to do doing its own manipulation to prevent the problem, but it seems to make other solutions fail.

      For example, the following common solution works fine in most cases with quasar.
      html {
      overflow-y: scroll;
      }
      However, it creates two y scrollbars with full width q-dialog.

      Thanks,

      posted in Help
      Q
      qjh