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

    stuffy

    @stuffy

    1
    Reputation
    65
    Profile views
    27
    Posts
    1
    Followers
    0
    Following
    Joined Last Online

    stuffy Follow

    Best posts made by stuffy

    • RE: How to get QSelect to display a label instead of a value

      The below does the trick for me …

      emit-value
      map-options
      
      posted in Useful Tips (NEW)
      S
      stuffy

    Latest posts made by stuffy

    • Plugin Meta title changes to first loaded page

      On every page visit the app’s browser title reverts to the first loaded page title in a second.

      export default {
        meta: {
          title: "Signup",
          titleTemplate: (title) => title,
        },
      

      Have removed the title tag from html.template.html

      posted in Framework
      S
      stuffy
    • RE: [Solved] [V1] Download a file in cordova app

      @Marco Thank you much!

      posted in Help
      S
      stuffy
    • Q-uploader event on failed file addition

      Is there a way to catch a failed file addition. We need to notify user when they drop unsupported file format. Currently it simply do not add the file but not able show any error to the user.

      Does anyone know of a way?

      posted in Framework
      S
      stuffy
    • RE: How to highlight the first row of q-table

      Duh … Got the first item fromthe q-table v-model lists.data[0]

      posted in Framework
      S
      stuffy
    • How to highlight the first row of q-table

      When a new row is added to q-table (via socket.io) we need to high light the row. We do not have the newly added item id. So, how can we get the first row, so that we can select it.
      Currently, using :selected.sync="selected" on click event to high light the row.

      posted in Framework
      S
      stuffy
    • RE: How to get QSelect to display a label instead of a value

      The below does the trick for me …

      emit-value
      map-options
      
      posted in Useful Tips (NEW)
      S
      stuffy
    • RE: Data Table custom filtering

      Me toooooo

      posted in Help
      S
      stuffy
    • q-select on tab key selects next option instead of moving to next element

      If an option is selected in q-select and if we press tab key to move the focus to the next element in the form, q-select selects the next option and then jumps focus to the next element.
      So I’m unable to move on to next element without the q-select option getting changed

                <q-select
                  label="Server"
                  v-model="thisIp.selectServer"
                  use-input
                  hide-selected
                  fill-input
                  input-debounce="0"
                  autofocus
                  Xemit-value
                  option-value="value"
                  :options="this.selectServerList"
                  @filter="filterSelectServer"
                  :error="$v.thisIp.selectServer.$error"
                  @blur="$v.thisIp.selectServer.$touch"
                  error-message="Please select server"
                  dense
                  options-dense
                  bottom-slots
                ></q-select>
      

      Gone through the document but not able to find any option to prevent this behaviour.

      posted in Framework
      S
      stuffy
    • RE: q-table on pagination Next flashes last page before showing next page

      @metalsadman can give a suggestion on this as unable to find whats causing this issue …

      posted in Framework
      S
      stuffy
    • RE: q-table on pagination Next flashes last page before showing next page

      @metalsadman thank you for looking into this.

      Please find the link to codepen https://codepen.io/Stuffy1/pen/QWWOVrq?

      posted in Framework
      S
      stuffy