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. kerbo
    3. Topics
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 9
    • Best 0
    • Groups 0

    Topics created by kerbo

    • K

      QTable Height and Scroll?
      Help • • kerbo

      4
      0
      Votes
      4
      Posts
      1489
      Views

      M

      @kerbo This works:
      https://forum.quasar-framework.org/topic/5284/q-table-height-virtual-scroll-and-sticky-headers/2
      🙂

    • K

      q-input masks
      Help • • kerbo

      3
      0
      Votes
      3
      Posts
      1195
      Views

      K

      No error. The mask simply doesn’t work.

      I’m using v-mask on a q-input inside of a q-td. Maybe that’s the reason. As I said, I inspected the DOM and the v-mask attribute is missing.

      I noticed q-input seems to be an INPUT layered in a couple of DIVs for styling. I’m wondering if I can make my own mask component by taking v-the-mask (which is an INPUT) and wrapping it in the same DIVs to get the q-input styling.

    • K

      How to set column widths in a Q-Table?
      Help • • kerbo

      4
      0
      Votes
      4
      Posts
      1153
      Views

      T

      Hi @jairomonassa , could you share sample implementation for this problem? thanks

    • K

      Setting Column Widths in Data Table?
      Framework • • kerbo

      2
      0
      Votes
      2
      Posts
      1322
      Views

      K

      try something like this:

      <q-tr slot="body" slot-scope="props" :props="props"> <q-td key="id" :props="props"> <q-input style="width: auto; min-width: 100px" /> </q-td> </q-tr>