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. walfin
    3. Posts
    W
    • Profile
    • Following 0
    • Followers 0
    • Topics 59
    • Posts 218
    • Best 24
    • Groups 0

    Posts made by walfin

    • RE: Odd/Even Table Row Colours

      @effiestar oh OK sorry it should not be (props.rowIndex==%2) it should just be (props.rowIndex%2)===0. Typo on my part.

      Also, for your expanded portion I think you don’t actually need an inner div, you can just put the styles / classes on the enclosing q-td.

      posted in Help
      W
      walfin
    • RE: Odd/Even Table Row Colours

      Hm, I think you don’t need to put in :props=“props” - can you try removing all of those and see if it works?

      posted in Help
      W
      walfin
    • When is Quasar 2 likely to come out of Beta?

      Just out of curiosity, for planning purposes.

      posted in Hangout
      W
      walfin
    • RE: Odd/Even Table Row Colours

      Try

      <q-table ...>
      <template #body="props">
      <q-tr :class="(props.rowIndex==%2)===0?'bg-grey':'bg-white'">
      ...
      <div class="bg-white"><!--expanded portion-->
      </div>
      </q-tr>
      </template>
      </q-table>
      posted in Help
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      And the winner is…

      drum roll

      WOEZELBEER!

      Congratulations for being the winner of our KetoShare Lunar New Year Contest! You will be winning either a Shopee or Amazon S$20/- voucher!

      We hope you’ll check out his cool Keto recipes!

      What are you waiting for? Visit https://customautosys.com/ketoshare/?recipe=21 and https://customautosys.com/ketoshare/?recipe=22 to see woezelbeer’s recipes for Leek Frittata and Grilled Chicken with Vegetables now!

      Leek Frittata

      posted in Show & Tell
      W
      walfin
    • RE: Nuxt

      @s-molinari Is there a way to use the same SSR app as my API as well? Like for example Nuxt can allow you to use the same app for both SSR as well as to provide an API (usually they add a “/api” route) so you don’t have to spawn 2 node apps.

      But I’m also more interested in Nuxt integration in general since Nuxt is really really popular for Vue users (don’t tell me the only way is to use UMD 😲).

      posted in Framework
      W
      walfin
    • Nuxt

      Is there a way to integrate Nuxt with Quasar SSR?

      Or is there anyway to add additional API routes to a quasar SSR node app?

      posted in Framework
      W
      walfin
    • RE: SevenQ - WYSIWYG Quasar GUI builder

      @sevenq42 Hi I just tried opening the GUI builder and got a blank page.

      posted in Show & Tell
      W
      walfin
    • Possible to add a command to generate AAB instead of APK?

      Google Play recommends that we upload AABs now but the default is to generate APKs. To generate an AAB we have to go through some repetitive steps in Android Studio. Not that I don’t know how to use Android Studio, just that it would be nice to have a single command to generate an (optionally signed) AAB.

      posted in CLI
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      @dobbel We’ve reconsidered, we’ll be giving him the prize!

      posted in Show & Tell
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      @dobbel Oic so woezel is your friend! Unfortunately the recipes were received past the contest deadline of midnight Singapore Time. Thank you so much but so sorry!

      posted in Show & Tell
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      Last day of KetoShare contest! You have less than 12 hours left until midnight Singapore time to post a Keto eatery or recipe on https://customautosys.com/ketoshare and you could be the lucky winner! Nobody has participated yet!

      posted in Show & Tell
      W
      walfin
    • RE: Question: Difference between "disable" and "readonly" in form components?

      @mickey58 AFAIK, readonly text can be selected, disabled can’t.

      posted in Help
      W
      walfin
    • RE: Headless CMS

      @qoyyuum Haha thanks since then I had already gone ahead to use Directus.

      posted in Hangout
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      Only 2 more days and nobody has participated in the contest yet! Quick, post an eatery or recipe at https://customautosys.com/ketoshare and you could be the lucky winner!

      posted in Show & Tell
      W
      walfin
    • RE: get in-app purchase working with cordova-plugin-purchase

      @pankaj I have gotten it working already.

      cordova plugin add cordova-plugin-purchase.

      Here is my boot file:

      import productIds from '../utils/productIds';
      
      export default ()=>{
      	if(process.env.MODE!=='cordova')return;
      	if(!window.store){
      		console.log('Store not available');
      		return;
      	}
      	store.validator='https://validator.fovea.cc/v1/validate?appName=...&apiKey=...';
      	productIds.forEach(id=>{
      		store.register({
      			id,
      			type:id.endsWith('_single')?store.CONSUMABLE:store.PAID_SUBSCRIPTION
      		});
      		store.when(id).approved(product=>product.verify()).verified(product=>product.finish());
      	});
      	store.error(error=>{
      		console.log(error);
      		store.refresh();
      	});
      	store.refresh();
      };
      

      And in my store component page I just call

      store.order(product);
      

      I also used PayPal for the equivalent purchases in electron.

      posted in Framework
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      @dobbel Lol maybe on the off-chance there’s a Keto eatery in your area?

      posted in Show & Tell
      W
      walfin
    • Why is Stylus (and Stylus variables) deprecated?

      This is quite sad for me as I much prefer Stylus with its ability to parse both CSS and indented syntax.

      posted in Framework
      W
      walfin
    • RE: Online Dog Trial Entry - Would Love Feedback

      Agree. The form looks super complicated.

      posted in Show & Tell
      W
      walfin
    • RE: Ketogenic diet recipe and eatery sharing app

      Nobody has posted anything for the contest yet. 😭

      But you know what this means?

      It means that if you post something and no one else takes part, you will be the LUCKY WINNER!

      Just post a Keto eatery or recipe at https://customautosys.com/ketoshare. It’s so easy!

      posted in Show & Tell
      W
      walfin