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. CWoodman
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 35
    • Posts 155
    • Best 7
    • Groups 0

    Topics created by CWoodman

    • CWoodman

      Q-table hanging browser
      Help • • CWoodman

      4
      0
      Votes
      4
      Posts
      177
      Views

      CWoodman

      @dobbel
      OK I see it. Thanks for letting me know. I’ll re-post on the new GitHub forum.

    • CWoodman

      q-table title-class not working
      Help • • CWoodman

      13
      0
      Votes
      13
      Posts
      1783
      Views

      beets

      @cwoodman No problem, glad to help!

    • CWoodman

      Q-select with clearable - how to remove tab-index from clear button
      Help • • CWoodman

      2
      0
      Votes
      2
      Posts
      276
      Views

      CWoodman

      Forget it - found a way to allow user to clear without needing the button; the filter function can check for zero length text and clear the model.

    • CWoodman

      table of q-selects - how to filter
      Help • • CWoodman

      3
      0
      Votes
      3
      Posts
      246
      Views

      CWoodman

      Great! thanks.

    • CWoodman

      Jest encountered an unexpected token: <template>
      Help • • CWoodman

      3
      0
      Votes
      3
      Posts
      153
      Views

      CWoodman

      Well this is just weird!
      Vetur was showing every line with error in two of my components. After trying many things, I accidentally discovered that changing the filename fixed the problem!
      So TreeSelect.vue was full of errors starting with the <template> tag, but renaming to SelectTree.vue made them all go away!
      And now, my jest tests are working again too!
      I’ll leave this post up in case someone else falls into this weird situation.

    • CWoodman

      How to align text-right in q-input
      Help • • CWoodman

      3
      0
      Votes
      3
      Posts
      3891
      Views

      CWoodman

      Yes that works. Thanks a bunch.

    • CWoodman

      How to tell if drawer is in overlay mode?
      Help • • CWoodman

      19
      0
      Votes
      19
      Posts
      507
      Views

      CWoodman

      Hoping to do a PWA if I can figure out how.

    • CWoodman

      Q-table no horizontal scroll on narrow window
      Help • • CWoodman

      10
      0
      Votes
      10
      Posts
      2030
      Views

      CWoodman

      @dobbel Yes it works fine. Should have upgraded a while ago. Sorry for the bother.

    • CWoodman

      Q-table with Grid mode not scrolling
      Help • • CWoodman

      2
      0
      Votes
      2
      Posts
      631
      Views

      CWoodman

      OK, found the solution - I just enclosed the table in a q-scroll-area when in mobile.

    • CWoodman

      Ensure selected item is visible in Q-list or Q-table
      Help • • CWoodman

      8
      0
      Votes
      8
      Posts
      776
      Views

      CWoodman

      @turigeza OK it works! And by adding the ‘virtual-scroll-sticky-size-start’ and ‘virtual-scroll-sticky-size-end’ props, I got it to show both the first and last rows when selected.

      Thanks again for your help!

    • CWoodman

      Tab selection programmatically in Q-tabs
      Framework • • CWoodman

      5
      0
      Votes
      5
      Posts
      819
      Views

      CWoodman

      @dobbel Thanks. That’s a much neater solution!

      In the real app, tabs are added via vuex, but your approach will still work with that - just need to watch the store’s tablist.

    • CWoodman

      How to make responsive layout in splitter pane?
      Help • • CWoodman

      2
      0
      Votes
      2
      Posts
      215
      Views

      CWoodman

      Seems the easiest way is to use ‘col-auto’ class, and maybe set the min-width and/or max-width?

    • CWoodman

      Scrollbar disappears when focused
      Help • • CWoodman

      33
      0
      Votes
      33
      Posts
      1262
      Views

      CWoodman

      I’ve used rows and cols with Bootstrap, but seems there’s lots more to flex that I need to understand.
      Thanks again for your help and patience.
      BTW, my app is working fine now with scrollbars when needed, and no superfluous ones.

    • CWoodman

      Q-stepper How to programmatically set step on mounting
      Help • • CWoodman

      3
      0
      Votes
      3
      Posts
      363
      Views

      CWoodman

      Thanks. I found the problem. Number of steps is dynamic, based on props and valid steps are contained in an array. I was trying to set the initial step before the array was set up. Just had to get things in the right order after mounting.

    • CWoodman

      Using q-dialog-plugin in a loop
      Help • • CWoodman

      6
      0
      Votes
      6
      Posts
      435
      Views

      dobbel

      @CWoodman thats fast, great work ! Will save this code for myself

    • CWoodman

      Q-tree with q-toggle
      Help • • CWoodman

      13
      0
      Votes
      13
      Posts
      558
      Views

      qyloxe

      @CWoodman this tree implementation is VERY interesting - it has one of the cleanest and elegant implementation, it has PROPER dnd handling of middle nodes, and is generally easy to extend/modify:

      https://github.com/TinyWisp/twtree

      BEWARE - it is not optimized for large trees, I hope there will be commits soon from some good soul, correcting those few simple inefficiencies. If it will be corrected, this tree might be one of the best vue trees.

    • CWoodman

      Q-table row highlight customization
      Help • • CWoodman

      12
      0
      Votes
      12
      Posts
      4895
      Views

      CWoodman

      @turigeza Got it! Works perfectly. Thanks for your help and patience!

    • CWoodman

      Requested feature - Select with tree-structured options
      Framework • • CWoodman

      9
      0
      Votes
      9
      Posts
      1596
      Views

      metalsadman

      If it’s not gonna make it to the core, it’s worth making it into an app-extension, should help other devs that might need.

    • CWoodman

      How to remove a tab-panel with keep-alive.
      Help • • CWoodman

      17
      0
      Votes
      17
      Posts
      2108
      Views

      CWoodman

      I agree. Thanks again for your help!