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. Florentin
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 13
    • Best 1
    • Groups 0

    Florentin

    @Florentin

    A French student who work on a mobile quasar project for his company.

    1
    Reputation
    37
    Profile views
    13
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location France

    Florentin Follow

    Best posts made by Florentin

    • RE: Pdf in mobile from blob

      Hi, I found a solution here : Android: URL.createObjectURL does not work properly

      let url = (window.URL || window.webkitURL || window || {}).createObjectURL(blob);
      // workaround for mobile playback, where it didn't work on chrome/android.
      // fetch blob at url using xhr, and use url generated from that blob.
      // see issue: https://code.google.com/p/chromium/issues/detail?id=227476
      // thanks, gbrlg
      var xhr = new XMLHttpRequest();
      xhr.open('GET', url, true);
      xhr.responseType = 'blob';
      xhr.onreadystatechange = function() {
          if (xhr.readyState === 4 && xhr.status == 200) {
              var url = (window.URL || window.webkitURL || window || {}).createObjectURL(xhr.response);
      
              // now url is ready
          }
      };
      xhr.send();
      
      posted in Help
      F
      Florentin

    Latest posts made by Florentin

    • RE: Q-Tree: How to retrieve the filtered nodes instead of the entire nodes

      @xdesai Thanks a lot, it’s perfectly what i was searching for 😉

      posted in Help
      F
      Florentin
    • RE: Q-Tree: How to retrieve the filtered nodes instead of the entire nodes

      Hi @metalsadman, if I do that in the example, I wont keep the node “satisfied customers”.

      fde6a3da-43b0-47f6-a34b-3ca062456385-image.png

      Or there is something i dont get ?

      posted in Help
      F
      Florentin
    • Q-Tree: How to retrieve the filtered nodes instead of the entire nodes

      Hi, I am currently using the tree component for my quasar web app.
      When I select a node from the tree I want to retrieve my nodes filtered

      For example, when I select the node “Good food”, I want to retrieve “Good food” with only one child (because I filtered). But instead I got it with 2 children.
      7ca1b7f3-5ad9-4a2e-bca4-fceed115c539-image.png
      Here the example without filter
      3fa6ad67-e6ad-42cd-9032-9819d726570e-image.png

      Here is my codepen : https://codepen.io/FGremy/pen/yLVMdVj?editors=1010

      Do you know a way to only retrieve the filtered nodes ?

      Thanks for your attention

      posted in Help
      F
      Florentin
    • Tree: retrieve the filtered nodes instead of the entire nodes

      Hi, I am currently using the tree component for my quasar web app.
      When I select a node from the tree I want to retrieve my nodes filtered

      For example, when I select the node “Good food”, I want to retrieve “Good food” with only one child (because I filtered). But instead I got it with 2 children.
      7ca1b7f3-5ad9-4a2e-bca4-fceed115c539-image.png
      Here the example without filter
      3fa6ad67-e6ad-42cd-9032-9819d726570e-image.png

      Here is my codepen : https://codepen.io/FGremy/pen/yLVMdVj?editors=1010

      Do you know a way to only retrieve the filtered nodes ?
      Thanks for your attention

      posted in Framework
      F
      Florentin
    • RE: Waiting for emulator to start...

      Hi, if your emulator is still open this may not working. Try to turn it of before using the quasar dev command.

      If you get the waiting for emulator to start message, you can try to change to quick boot or cold boot. It solved the problem for me.

      posted in Help
      F
      Florentin
    • RE: Problems to run cordova on Android Studio

      Hi, it seems that your quasar.conf.js has errors.
      Did you modify it ?

      posted in Help
      F
      Florentin
    • RE: Cordova build dev "No target specified and no devices found, deploying to emulator"

      PS: If you want to disapear the android_home is deprecated. You can just replace it by ANDROID_SDK_ROOT in your environnement variables.

      posted in Help
      F
      Florentin
    • RE: Cordova build dev "No target specified and no devices found, deploying to emulator"

      Hi,
      you can try this :

      • turn off you emulator (cordova/quasar will open it for you)
      • run this command : quasar dev -m cordova -T android --e emulator_name
      posted in Help
      F
      Florentin
    • RE: Loader at splash screen

      Hi, if you use cordova plugin splashscreen you can manage spinner in config.xml
      <preference name="ShowSplashScreenSpinner value=“false”/>

      posted in Framework
      F
      Florentin
    • RE: Pdf in mobile from blob

      Hi, I found a solution here : Android: URL.createObjectURL does not work properly

      let url = (window.URL || window.webkitURL || window || {}).createObjectURL(blob);
      // workaround for mobile playback, where it didn't work on chrome/android.
      // fetch blob at url using xhr, and use url generated from that blob.
      // see issue: https://code.google.com/p/chromium/issues/detail?id=227476
      // thanks, gbrlg
      var xhr = new XMLHttpRequest();
      xhr.open('GET', url, true);
      xhr.responseType = 'blob';
      xhr.onreadystatechange = function() {
          if (xhr.readyState === 4 && xhr.status == 200) {
              var url = (window.URL || window.webkitURL || window || {}).createObjectURL(xhr.response);
      
              // now url is ready
          }
      };
      xhr.send();
      
      posted in Help
      F
      Florentin