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. cynderkromi
    3. Topics
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 19
    • Posts 72
    • Best 5
    • Groups 0

    Topics created by cynderkromi

    • C

      Online Dog Trial Entry - Would Love Feedback
      Show & Tell • • cynderkromi

      4
      1
      Votes
      4
      Posts
      156
      Views

      W

      Agree. The form looks super complicated.

    • C

      Don't want q-input to expand with text.
      Help • • cynderkromi

      7
      0
      Votes
      7
      Posts
      295
      Views

      C

      I fixed it, I had too many flexbox rows. 🙂

    • C

      q-input populate from database, or get as input if db empty
      Help • • cynderkromi

      3
      0
      Votes
      3
      Posts
      260
      Views

      C

      @ilia Thanks, I will look into that.

    • C

      Get Data with Dexie and show in q-table
      Help • • cynderkromi

      6
      0
      Votes
      6
      Posts
      396
      Views

      dobbel

      @cynderkromi

      That’s why I need help, so I can get that to work

      It’s pretty hard to help because I have no idea what is inside of an entryOBJ. Again the best way to get help is to create a codepen.io to demonstrate your problem.

      Here’s a try:

      getAllEntries() { enterFDC.tableEntries.each(entryOBJ => { this.entriesArray.push(entryOBJ) }) this.tableData = this.entriesArray },

      you’ll have to match the content of an entryOBJ to the columns of the table tableColumns

    • C

      Spinner until Page Reloads after PayPay payment
      Help • • cynderkromi

      3
      0
      Votes
      3
      Posts
      56
      Views

      dobbel

      @cynderkromi

      hits the PayPal button to pay, then hits pay, it takes the site a few seconds once the Paypal screen is gone, to switch to the Membership Complete page.

      Quasar does not control the screens created by Paypal .(popups or whatever)

    • C

      Using Google API for Sheets
      Help • • cynderkromi

      7
      0
      Votes
      7
      Posts
      194
      Views

      dobbel

      @beets @cynderkromi

      The third option is again to set up a nodejs / PHP process and let it handle that instead of trying to do it clientside.

      Probably the ‘best’ way to do it.

    • C

      Form Submit with PayPal Payment Button
      Help • • cynderkromi

      3
      0
      Votes
      3
      Posts
      306
      Views

      beets

      @cynderkromi Dobbel pointed you in the right direction here. You’ll need to first perform the payment in the browser via paypal. Once paypal responds that it accepted a payment, it will return a payment / transaction id, which you then submit to your own server that in turn sends you an email. I assume you will manually check that you indeed have a payment in paypal at this point before issuing membership, else you’d have to also verify the payment on your server. Just keep in mind if you don’t verify, some script kiddie could submit membership applications without paying, but I wouldn’t worry about that unless you have the dev resources to do server side checking, because it’s probably not a problem unless you’re a high target.

    • C

      How to set default value in q-option-group
      Help • • cynderkromi

      3
      0
      Votes
      3
      Posts
      382
      Views

      C

      @dobbel Thanks. The option list will be part of a form that will be submitted and saved to IndexedDB. And I will have a page that will be able to update the values, too. So I need to work out all those details. I do want the radio button list to default to No when the page initially loads.

    • C

      Import Dexie Version From Another Page
      Help • • cynderkromi

      5
      0
      Votes
      5
      Posts
      152
      Views

      C

      I figured it out.

      I am including my Dexie connect file as a .js file

      import pawTapDB from '../components/DexieConnect.js'

      and this is my DexieConnect.js file, if anyone else has this issue:

      import Dexie from 'dexie' const pawTapDB = new Dexie('pawTapDB') pawTapDB.version(20).stores({ peopleTable: '++p_key,l_name,p_email', tableHoldPersonID: '++thpid_key', dogTable: '++p_dog,callName', tableHoldDogID: '++thdid_key', locationTable: '++pk_location, locationName', clubTable: '++pk_club' }) export default pawTapDB
    • C

      Send Email from Quasar App Example Needed
      Help • • cynderkromi

      21
      0
      Votes
      21
      Posts
      1265
      Views

      C

      @pazarbasifatih what does Firebase do to make email work online?

      I have a desktop app that I’m using IndexedDB (Dexie) with that’s working well. But I have a couple of online apps now. I could use Firebase but they don’t really need a database.

    • C

      Using electron-packager to build Quasar project - App doesn't start
      Help • • cynderkromi

      7
      0
      Votes
      7
      Posts
      1009
      Views

      metalsadman

      @cynderkromi i don’t think you need to tinker with electron config manually in your package.json, https://quasar.dev/quasar-cli/developing-electron-apps/configuring-electron#Introduction.

    • C

      Loading a value using Transaction in Dexie
      Help • • cynderkromi

      7
      0
      Votes
      7
      Posts
      140
      Views

      C

      @beets Thanks so much! It works great now.

    • C

      Title For Button Bar
      Help • • cynderkromi

      6
      0
      Votes
      6
      Posts
      130
      Views

      C

      @beets Great idea! Thanks! Yeah having the headers be clickable would be awkward.

    • C

      Populate q-select from Database (indexedDB/localbase)
      Help • • cynderkromi

      4
      0
      Votes
      4
      Posts
      261
      Views

      C

      okay… figured this out. Thanks for the help @Ilia

      This is what worked, for future reference:

      <div class="col-4 q-pa-sm"> <q-badge color="secondary" multi-line> Model: "{{ Peepsmodel }}" </q-badge> <q-select v-model="Peepsmodel" bg-color="grey-3" :options="options" label="Dog Owner" hint="Owner - must exist as a person" /> </div> mounted () { this.getpeople() console.log(" Mounted: this - ", this) }, addNewDog() { if (this.callName !== null && this.regName !== null) { this.$q.notify({ color: 'green-4', textColor: 'white', icon: 'cloud_done', message: 'New Dog Has Been Added' }) // Add New Dog to the database let newDog = { id: Date.now(), callName: this.callName, regName: this.regName, dogOwner: this.Peepsmodel.value, dogCoOwner: this.dogCoOwner, dogHandler: this.dogHandler, dogBday: this.dogBday, dogBreed: this.dogBreed, dogHeight: this.dogHeight, akcNum: this.akcNum, done: false } db.collection('dogs').add(newDog) // this.dogs.push(newDog) this.newDog = '' } else { this.$q.notify({ type: 'negative', message: `Please fill in all form fields.` }) } }, getpeople() { return new Promise((resolve) => { db.collection('people') .orderBy('l_name') .get() .then((people) => { var myPeeps = [] for (var i = 0 ; i < people.length; i++) { myPeeps.push({value: people[i].id, label: people[i].l_name + ', ' + people[i].f_name}); `` } this.options = myPeeps resolve(people) console.log(" ******* This is the getPeople method ", people) }) }) },
    • C

      Database Options
      Help • • cynderkromi

      5
      0
      Votes
      5
      Posts
      853
      Views

      C

      @beets Okay thanks! Good to know. I am still examining my options of maybe using indexedDB but I will have a ton-load of data.

    • C

      Body Under the Drawer
      Framework • • cynderkromi

      3
      0
      Votes
      3
      Posts
      504
      Views

      C

      @beets said in Body Under the Drawer:

      @cynderkromi your router-view should be inside the q-page-container. Also make sure the page component is wrapped in a q-page

      Thanks! Moving the router-view worked!

    • C

      Desktop App Possibly with Electron
      Framework • • cynderkromi

      3
      0
      Votes
      3
      Posts
      120
      Views

      C

      Thanks I will check that out. 🙂