Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. jarvilito
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 9
    • Best 0
    • Groups 0

    jarvilito

    @jarvilito

    0
    Reputation
    9
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jarvilito Follow

    Latest posts made by jarvilito

    • Modify Drawer Slide Speed

      Hi, is there any possible way to modify the speed of drawer when sliding? Its kinda fast , and i want to make it a little bit slow to appreciate the slide effects. Thanks

      posted in Help
      J
      jarvilito
    • RE: Quasar Email Internal Validation

      @metalsadman Thanks man, i ended up using Vuelidate, its easy to use too and has a ton of functions. If anyone having a difficulty too on how to use vulidate on quasar this link will help you. Just dont forget to include the vuelidate in boot on quasar conf

      posted in Help
      J
      jarvilito
    • Quasar Email Internal Validation

      hi peeps!
      Just want to ask if there is any email internal validation that quasar provided? I didnt find any example of email validation except for vuelidate. Which is im trying to avoid using. Thanks!

      posted in Help
      J
      jarvilito
    • RE: Q-card column not distributing equally

      @metalsadman Thanks metal man! It works

      posted in Help
      J
      jarvilito
    • Q-card column not distributing equally

      Hi, i tried to use q-card in my v-for loop, i want my card to display 4 cards per row, but its not working. I dont see any errors on my code, and i tried this in bootstrap and its working

      aecef13a-ac7c-4d14-acf3-9b24c7d05812-image.png

      here is my full component of ramen code :

      code_text
      ```<template>
      <div class="q-mt-md q-mx-sm">
       <div class="row">
         <q-badge transparent align="middle" color="amber-3">
           <span class="text-h5 text-black">Ramen</span>
         </q-badge>
       </div>
       <div class="q-pa-md row q-gutter-sm">
         <q-card
           v-for="(item,index) in items"
           :key="index"
           class="q-ma-md text-black col-xs-12 col-md-4 col-lg-3"
         >
           <q-card-section>
             <div class="text-h6">{{item.title}}</div>
           </q-card-section>
           <q-separator inset />
      
           <q-card-section>{{item.description}}</q-card-section>
      
           <img :src="item.img" height="350px" />
      
           <q-separator class="q-my-md" inset />
      
           <q-card-actions>
             <q-btn>View</q-btn>
           </q-card-actions>
           <q-card-section class="align-right">PHP {{item.price}}</q-card-section>
         </q-card>
       </div>
      </div>
      </template>
      posted in Help
      J
      jarvilito
    • RE: Q-table __index return undefined

      @SB said in Q-table __index return undefined:

      (this.selected[0])]

      seems like you are doing it in built in selection on q-table, im actually creating a customize button to delete the selected row, but this will help . Thanks mate!

      posted in Help
      J
      jarvilito
    • RE: Q-table __index return undefined

      @SB hi thanks for sharing, already look into it, but im not quite sure how to use dataTable.indexOf(rowObject)? Did you happen to know how to use it in my situation? Thanks

      posted in Help
      J
      jarvilito
    • Q-table __index return undefined

      Hi i tried to access the index of my table using props.row.__index but when i console log it it return undefined. here is my code

                <q-tr :props="props">
                  <q-td key="action">
                    <q-btn
                      @click="deleteLine(props.row.__index)"
                      round
                      flat
                      color="red"
                      icon="close"
                    />
                  </q-td>
               </q-tr>
      posted in Help
      J
      jarvilito
    • Quasar CLI only installing/upgrading 1.0.2

      Hi, last week i upgraded my quasar 1.2 project to 1.4.2. Its working, but when my team pull the upgraded quasar, his quasar version become 1.0.2 ? I already uninstall quasar then install it using npm install -g @quasar/cli , it was success but when i check the version of my quasar its only 1.0.2, i try to upgrade it and it says its already the latest version.

      b9f0e2d4-f910-45f7-b674-e38b7bc7984b-image.png

      posted in CLI
      J
      jarvilito