Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. thekingrenz23
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Groups 0

    thekingrenz23

    @thekingrenz23

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

    thekingrenz23 Follow

    Latest posts made by thekingrenz23

    • RE: @input not trigger when changing the value of model q-select

      @dobbel thanks a lot for the explanation and tips on how to solve it

      posted in Help
      T
      thekingrenz23
    • @input not trigger when changing the value of model q-select
      q-select
      	class="q-mb-md"
          dense
          outlined
          v-model="region"
          @filter="filterRegion"
          use-input
          input-debounce="0"
          :options="regionOptions"
          hint="Region"
          label="Select Region"
          bottom-slots
          :loading="loadingRegion"
          @input="loadProvince"
          :rules="[ val => !!val || 'Region is required']"
          >
          <template v-slot:no-option>
              <q-item>
                  <q-item-section class="text-grey">
                      No results
                  </q-item-section>
              </q-item>
          </template>
      </q-select>
      

      changing the value of region does not trigger @input event

      this.region  = {
       	value: “test”,
      	label: “test”
      }
      //this will not trigger @input event
      
      posted in Help
      T
      thekingrenz23
    • Scroll Table to top when next table pagination is pressed

      I have a lot of data to render on my table.

      5k plus data. I limit it 50 records per page.

      The problem is when the next pagination is pressed the scroll stays where you left it.

      I want to scroll to the top again when i press the next pagination

      Thanks

      posted in Help
      T
      thekingrenz23