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. technowebs
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 16
    • Best 1
    • Groups 0

    technowebs

    @technowebs

    1
    Reputation
    2
    Profile views
    16
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    technowebs Follow

    Best posts made by technowebs

    • RE: Axios request getting cancelled in android

      Finally I was able to find out the issue, the request was failing due to some issue in Axios interceptor, which occurring only in android

      posted in Help
      T
      technowebs

    Latest posts made by technowebs

    • RE: How to Troubleshoot Firebase Cloud Messaging

      @marknigh Hi, Can you please share your thought on how to get the device token…I am trying below code, unfortunately, it’s showing getToken of undefined

       const fcm = new FCM();
       fcm
          .getToken()
           .then(r => console.log(`Token ${r.token}`))
           .catch(err => console.log(err));
      posted in Framework
      T
      technowebs
    • RE: Securing google map API, in cordova and web

      @suleiman_as I am facing problem with android apps, PWA is not a solution for me 😞

      In browsers it’s working perfectly. I also tried cordova-plugin-googlemaps, unfortunately that’s also not working in my project. Only a empty map area is rendering, nothing is appearing, no console errors.

      posted in Help
      T
      technowebs
    • RE: Securing google map API, in cordova and web

      @suleiman_as got it, but I am not understanding how to implement interactive google map from backend 😞

      posted in Help
      T
      technowebs
    • RE: Securing google map API, in cordova and web

      @dobbel Thanks I will try it, and check if it solves the security issue.

      My current plugin working fine in Android too when I remove the restriction (SHA1) from the API console. May be Cordova specific plugin solve the issue. I will test and update

      Thanks

      posted in Help
      T
      technowebs
    • RE: Securing google map API, in cordova and web

      @dobbel I am using cordova, and getting RefererNotAllowedMapError

      posted in Help
      T
      technowebs
    • Securing google map API, in cordova and web

      Hi all,

      I am using quasar-google-maps for my project(Web, Android, iOS), which is working fine without API restrictions.

      It’s working in the web with HTTP Referrer restriction. But, in mobile device it’s showing error, I tried SHA1 restrictions for android. I am not sure if there anything needed to add in config.xml or not?

      If anyone has secured api keys in android, please share some thought on this.

      Thanks

      posted in Help
      T
      technowebs
    • RE: Can anyone here have a tutorial how to create quasar framework with sqlite3 CRUD ?

      @cynderkromi Have you found any tutorial or sample code? I need to develop an app with SQLite that works on mobile and desktops(Windows or Linux).

      posted in Help
      T
      technowebs
    • mapMutation with dynamic store

      I am writing a custom component so that I can reuse it with different stores. I am trying to use mapMutation like this, where storeName is a prop passed from the parent component

      methods: {
           ...mapMutations(`${this.storeName}`, ['someVariable']),
      }
      

      But, this is generating the below error,
      Uncaught TypeError: Cannot read property ‘storeName’ of undefined

      Any suggestion will be helpful, thanks

      posted in Help
      T
      technowebs
    • RE: Is there any option to display two consecutive months in QDate?

      @dobbel
      Thanks for your suggestion. The Q-calendar is really very useful. Using a single field was my client’s preference, however, I am planning to use two QDate fields.

      posted in Framework
      T
      technowebs
    • Is there any option to display two consecutive months in QDate?

      I am developing a hotel booking site, where I want to display two consecutive months so that user can easily select checkin and checkout date. I am using QDate with range selection(v1.13+).

      posted in Framework
      T
      technowebs