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. iklemm
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 8
    • Best 1
    • Groups 0

    iklemm

    @iklemm

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

    iklemm Follow

    Best posts made by iklemm

    • Hook in register-service-worker update and display Notification in App

      I hook in register-service-worker.js and want to display a Notification on update. Whats the best way to display a message to the user by notify?

      // register-service-worker.js
      ...
      updated (registration) {
       // how to trigger $q.notify('You have an update') on my App?
       },
      

      Can i get access to $q from within the updated method. Or should i dispatch an event e.g. on the windows object that i have to capture in some component?

      posted in Help
      I
      iklemm

    Latest posts made by iklemm

    • RE: How to remove {cursor: not-allowed !important} from class .disabled?

      turns out that just selecting “.disabled class” is not enough, you also need to match children:

      so adding this to css/app.scss works for me.

      .disabled, .disabled *{
      cursor: auto !important;
      }

      posted in Help
      I
      iklemm
    • RE: Hook in register-service-worker update and display Notification in App

      Great, Notify works for me this way. - Thank You!

      I just needed the notification at this point.

      And yes, updating the app did not work for me either by just doing a forced reloading.

      I do have to unregister the serviceworker and afterwards reload the app for a new installation to have all data updated.

      Like this:

      navigator.serviceWorker.getRegistrations().then(function (registrations) {
            for (let registration of registrations) {
              registration.unregister();
            }
            window.location.reload(true);
          });
      

      Of course there might be more elegeant ways, but this worked for me.

      posted in Help
      I
      iklemm
    • Hook in register-service-worker update and display Notification in App

      I hook in register-service-worker.js and want to display a Notification on update. Whats the best way to display a message to the user by notify?

      // register-service-worker.js
      ...
      updated (registration) {
       // how to trigger $q.notify('You have an update') on my App?
       },
      

      Can i get access to $q from within the updated method. Or should i dispatch an event e.g. on the windows object that i have to capture in some component?

      posted in Help
      I
      iklemm
    • RE: q-input : bg-color and readonly - bg-color

      @dobbel
      not working if you give q-input a bg-color. see 2.)

      posted in Help
      I
      iklemm
    • q-input : bg-color and readonly - bg-color

      I have two simple problems but find no answer:

      1.) If i set a q-input to readonly it automatically gets grey, which is fine.
      Question: where can i set (globally) this bg color for readonly/disabled q-inputs?

      2.) If i set a bg-color to a q-input, the color is NOT changing any more after q-input is set to readonly. So bg-color is overwriting readonly-color.
      How to fix this?

      thanx in advance!

      posted in Help
      I
      iklemm