Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. dobbel
    3. Posts
    • Profile
    • Following 2
    • Followers 4
    • Topics 1
    • Posts 854
    • Best 105
    • Groups 0

    Posts made by dobbel

    • RE: sending text values on uploader

      @beets

      You memorized the entire Quasar doc 😉

      posted in Help
      dobbel
      dobbel
    • RE: Using Google API for Sheets

      @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.

      posted in Help
      dobbel
      dobbel
    • RE: Using Google API for Sheets

      @cynderkromi

      If so, is it okay for me to install the Google API NodeJS client and use it in my Quasar app?

      NodeJS runs on a server. Quasar runs on a clients browser( most of the time). So those 2 things don’t match.

      posted in Help
      dobbel
      dobbel
    • RE: nested components and v-model

      @felek

      You could also extend a Quasar component for potential less hassle.

      https://vuejs.org/v2/api/#extends
      https://littlelines.com/blog/2020/03/13/extending-vue-components
      https://stackoverflow.com/questions/35964116/how-do-i-extend-another-vuejs-component-in-a-single-file-component-es6-vue-loa

      posted in Help
      dobbel
      dobbel
    • RE: How to configure socket.io client for backend access

      @seriusrod

      You have to set the server listening IP to it’s IP address instead of 0.0.0.0:3002 . The client (Quasar that runs on someone’s browser, not server) has to connect to the nodejs server’s IP address and not localhost.

      posted in Help
      dobbel
      dobbel
    • RE: How to adjust notify plugin enter and exit speed animation

      @kero

      Maybe this will help to see what is going on:
      https://developers.google.com/web/tools/chrome-devtools/inspect-styles/animations

      posted in Help
      dobbel
      dobbel
    • RE: [Solved] Trigger autocomplete without submitting a form

      @stanley

      You could see if there’s a github issue about this. If not you could create a new feature request with your research.

      posted in Framework
      dobbel
      dobbel
    • RE: App Started Crashing

      @kenyon

      • Did you try to restart your computer?
      • Disable windows swap file (that will remove the D:\pagefile.sys)

      See this thread with the same issue:
      https://stackoverflow.com/questions/61936085/error-from-chokidar-c-error-ebusy-resource-busy-or-locked-lstat-c-dump

      posted in Help
      dobbel
      dobbel
    • RE: separator between toggle buttons

      @lazaroofarrill

      separator between the button in a toggle?

      no you cannot. What you could do is put a seperator icon in this example:

      https://quasar.dev/vue-components/button-toggle#Example--Custom-buttons-content

      Or some css:

      style=" border-right: 6px solid green;
        height: 100%">
      
      posted in Help
      dobbel
      dobbel
    • RE: Vuex Persisten State duplicate key

      @jhon

      Maybe quasar’s cookie plugin allows duplicate keys? What if you first check if the cookie key exists before doing cookies.set?

      See here:
      https://quasar.dev/quasar-plugins/cookies#Verify-if-Cookie-is-Set

      posted in Framework
      dobbel
      dobbel
    • RE: [Solved] Trigger autocomplete without submitting a form

      @stanley

      OK , good info, using an iframe sounds a bit hacky though…

      posted in Framework
      dobbel
      dobbel
    • RE: Form Submit with PayPal Payment Button

      @cynderkromi

      start here:
      https://developer.paypal.com/docs/business/checkout/configure-payments/single-page-app/#vue
      https://github.com/paypal/paypal-checkout-components

      btw sending emails cannot be done by Quasar.

      posted in Help
      dobbel
      dobbel
    • RE: [Solved] Trigger autocomplete without submitting a form

      @Stanley

      Here’s some info about autocomplete:

      https://quasar.dev/vue-components/input#Basic-features
      https://quasar.dev/vue-components/form#Turning-off-Autocompletion
      https://quasar.dev/vue-components/select#Native-attributes-with-use-input

      posted in Framework
      dobbel
      dobbel
    • RE: Set capacitor's default server URL?

      @yhu420

      Here’s another thread about this:
      https://forum.quasar-framework.org/topic/7563/quasar-dev-localhost-for-capacitor-apps?_=1611153616484

      posted in Help
      dobbel
      dobbel
    • RE: API Call does not work in ios Mobile App version

      @Siddharth

      Great you solved the issue.

      This way we eliminated the need for wkwebview

      If you don’t have wkwebview than you’ll use UIWebView(default). Apple will (automatically) reject any webview based app uploaded to the iTunes store with code(used or not) that contains UIWebView.

      posted in Framework
      dobbel
      dobbel
    • RE: Where To Enter Capacitor Permissions For Android

      @omgwalt

      AndroidManifest.xml

      That seems the place to do the permissions in Capacitor see:
      https://capacitorjs.com/docs/android/configuration

      posted in CLI
      dobbel
      dobbel
    • RE: How to use select option-label function?

      @iamtetea

      Please create a codepen.io to get better support.

      posted in Framework
      dobbel
      dobbel
    • RE: Not mutating prop, still get an error

      @szabiaura said in Not mutating prop, still get an error:

      But this doesn’t seem to define withAdd as a prop in a ts-class component.

      I found this:

      @Prop({default: '100vw'}) readonly width!: string

      From here:
      https://github.com/kaorun343/vue-property-decorator/issues/179

      posted in Help
      dobbel
      dobbel
    • RE: Where To Enter Capacitor Permissions For Android

      @omgwalt

      I am more of a Cordova guy here.

      In Quasar you can set some settings like package name, back button behavior. For the most part you’ll have do the specific config(install plugins, set permissions explanations for IOS) directly in the generated cordova/capacitor project folders. Quasar only controls the www folder of an Cordova project ( and probably Capacitor).

      See here for the Capacitor specific doc:
      https://quasar.dev/quasar-cli/developing-capacitor-apps/configuring-capacitor#capacitor.config.json

      posted in CLI
      dobbel
      dobbel