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. splender99
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 3
    • Best 1
    • Groups 0

    splender99

    @splender99

    1
    Reputation
    179
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    splender99 Follow

    Best posts made by splender99

    • How v-for in q-list with highlight

      I want to highlight a q-list while using v-for? I tried the code below, list display properly but without highlight. Any other way to approach a solution with highlighting. Goals is to create a custom big list and a click will select into an input. q-select for big options in not really very intuitive.

      Any suggestion will be appreciated. Thanks

      # code block
      <q-list highlight separator>
        <q-item @click="selectItem">
        </q-item>
        <div v-for="field in choices" highlight separator>
          <q-item @click="selectItem">
          <q-item-main>
            {{ field.value }} - {{ field.label }}
          </q-item-main>
          </q-item>
        </div>
      </q-list>
      
      posted in Help
      S
      splender99

    Latest posts made by splender99

    • RE: q-uploader - how to reset file upload after successful upload

      Need this feature also, a reset component method, or any way to clear the list programmatically without clicking on the check icons manually.

      posted in Help
      S
      splender99
    • RE: ~~Do not upgrade to Vue 2.4.x (yet)~~ Edit: Safe to upgrade

      @nueko

      I second this, Vue 2.6 and Quasar @ 0.14.6

      posted in Announcements
      S
      splender99
    • How v-for in q-list with highlight

      I want to highlight a q-list while using v-for? I tried the code below, list display properly but without highlight. Any other way to approach a solution with highlighting. Goals is to create a custom big list and a click will select into an input. q-select for big options in not really very intuitive.

      Any suggestion will be appreciated. Thanks

      # code block
      <q-list highlight separator>
        <q-item @click="selectItem">
        </q-item>
        <div v-for="field in choices" highlight separator>
          <q-item @click="selectItem">
          <q-item-main>
            {{ field.value }} - {{ field.label }}
          </q-item-main>
          </q-item>
        </div>
      </q-list>
      
      posted in Help
      S
      splender99