Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. jitendra16
    J
    • Profile
    • Following 2
    • Followers 0
    • Topics 41
    • Posts 107
    • Best 5
    • Groups 0

    jitendra16

    @jitendra16

    7
    Reputation
    76
    Profile views
    107
    Posts
    0
    Followers
    2
    Following
    Joined Last Online

    jitendra16 Follow

    Best posts made by jitendra16

    • Export(pdf/csv/word/xlsx) and Print feature request in q-table

      Its common to have ‘export’ and ‘print’ table data. This is missing feature in q-table, can we have it?

      posted in Framework
      J
      jitendra16
    • RE: Did you get support from the Quasar Dev Team or the Community?

      I am a proud Quasar user from past 8 months, I always get the response from the community especially from @rstoenescu @s-molinari @metalsadman @Hawkeye64

      posted in Help
      J
      jitendra16
    • RE: q-tab-panels wrongly reacting to event('input') emitted by input-field inside a q-tab.

      @rstoenescu Thank you for your great work and quick response. I have upgraded, now everything OK.

      posted in Framework
      J
      jitendra16
    • RE: Firebase Push notification not working in quasar framework n Vue.js

      /node_modules/@firebase/messaging/dist/index.cjs.js

      You will find index.esm.js, index.cjs.js.map and index.esm.js.map also at above location.Total 4 files.

      var DEFAULT_SW_PATH = ‘/service-worker.js’;
      var DEFAULT_SW_SCOPE = ‘/’;

      Do above two changes wherever you find DEFAULT_SW_PATH and DEFAULT_SW_SCOPE
      then build again, everything will work fine.

      posted in Framework
      J
      jitendra16
    • RE: [solved] Quasar UMD is not responsive, everything shrinks to fit on mobile screen

      i found my mistake that i was not using meta tag view port

      <meta name=“viewport”
      content=“user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (htmlWebpackPlugin.options.ctx.mode.cordova) { %>, viewport-fit=cover<% } %>”>

      posted in Framework
      J
      jitendra16

    Latest posts made by jitendra16

    • RE: How to make q-tree horizontal instead of vertical, for big/wide screens?

      @metalsadman As of now, i am implementing https://github.com/hukaibaihu/vue-org-tree, but will move to q-tree in future.

      posted in Framework
      J
      jitendra16
    • RE: How to make q-tree horizontal instead of vertical, for big/wide screens?

      @dobbel https://github.com/hukaibaihu/vue-org-tree is perfect for my use, but I usually avoid anything out of quasar(i love it). Hope to see same in q-tree soon.

      posted in Framework
      J
      jitendra16
    • RE: How to make q-tree horizontal instead of vertical, for big/wide screens?

      @s-molinari Something like this https://codepen.io/ross-angus/pen/jwxMjL. This kind of orientation better for wider screens(not much vertical scrolling needed). Also, check https://github.com/hukaibaihu/vue-org-tree as suggested by @dobbel .

      posted in Framework
      J
      jitendra16
    • RE: How to make q-tree horizontal instead of vertical, for big/wide screens?

      @dobbel rotate not helpful.

      posted in Framework
      J
      jitendra16
    • RE: How to make q-tree horizontal instead of vertical, for big/wide screens?

      @s-molinari @rstoenescu #featureRequest

      posted in Framework
      J
      jitendra16
    • RE: How to make q-tree horizontal instead of vertical, for big/wide screens?

      @metalsadman Can you please list this in ‘requested features’?

      posted in Framework
      J
      jitendra16
    • How to make q-tree horizontal instead of vertical, for big/wide screens?

      How to make q-tree horizontal instead of vertical, for big/wide screens?

      posted in Framework
      J
      jitendra16
    • RE: $q.appVisible is firing twice on clicking the tab

      @beets Sure. Actually, i have a followup list of persons with their WhatsApp number, so I am triggering prefilled msgs to Whatsapp API. So the flow is like this.

      1. user starts the sequence on btn click
      2. App open WA API for 1st record.
      3. user send the msg on whatsapp App
      4. Comes back to our App
      5. App open WA API for 2nd record
        so on.
      window.open(`https://wa.me/91${bulk[this.WAsequence].number}?text=${encodeURIComponent(bulk[this.WAsequence].message)}`
      
      posted in Framework
      J
      jitendra16
    • RE: $q.appVisible is firing twice on clicking the tab

      @beets Yes, you are right. Let me try your suggestion.

      var new_window = window.open('some url')
      new_window.onbeforeunload = function(){ /* my code */ }
      
      posted in Framework
      J
      jitendra16
    • RE: $q.appVisible is firing twice on clicking the tab

      @beets No, its not because of browser bug as I tried to console log ‘Date.now()’ and found out that ‘$q.appVisible’ watch code is called twice.

      posted in Framework
      J
      jitendra16