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
Latest posts made by jarvilito
-
Modify Drawer Slide Speed
-
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
-
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! -
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
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>
-
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!
-
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
-
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>
-
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.