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. jitendra16
    J
    • Profile
    • Following 2
    • Followers 0
    • Topics 44
    • Posts 116
    • Best 7
    • Groups 0

    jitendra16

    @jitendra16

    9
    Reputation
    76
    Profile views
    116
    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: dynamic columns declaration in q-table ?

      @chyde90 Thanks for clue. I achieved this following way

      columns() {
            return Object.keys(this.parsedJsonArrayOfObjectsFromCsv[0]).map(key => {
              return {
                name: key,
                label: key,
                align: "left",
                sortable: true,
                field: key
              }
            })
          }
      
      posted in Help
      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
    • disabled q-item not disabling click on q-item-section

      disabled q-item not disabling click on q-item-section, if we click on disabled q-item then also @click is getting called.

                             <q-item
                                  :disable="true"
                                  tag="label"
                                  v-ripple
                                  v-close-popup
                                >
                                  <q-item-section>
                                    <q-item-label  
                  @click="something()"
                                    >Update</q-item-label>
                                  </q-item-section>
                                </q-item>
      
      posted in Framework
      J
      jitendra16

    Latest posts made by jitendra16

    • RE: Firebase Push notification not working in quasar framework n Vue.js

      @cata-orellana
      https://github.com/quasarframework/quasar/discussions/9065

      posted in Framework
      J
      jitendra16
    • RE: integrate firebase cloud messaging in quasarv1.9 !

      useServiceWorker is deprecated

      posted in Framework
      J
      jitendra16
    • RE: [Solved] Access environment in index.template.html ?

      Solved it by “htmlWebpackPlugin.options.process.env.isdev”

      my quasar.conf includes following

       env: ctx.dev ? { // so on dev we'll have
              isdev: true
            } : { // and on build (production):
              isdev: false
            }
      
      posted in Framework
      J
      jitendra16
    • [Solved] Access environment in index.template.html ?

      I want to have a block of code in the production build only. Below is what I tried, but don’t know how to access environment?

      <% if (htmlWebpackPlugin.options.environment !== 'dev') { %>
        // insert something in production only
      <% } %>
      
      posted in Framework
      J
      jitendra16
    • RE: q-dialog accidental 'enter' key press issue

      @s-molinari Can we set autofocus to ‘cancel’ instead of ‘ok’ so that accidental ‘enter’ keypress event can be treated as cancelled.

      posted in Framework
      J
      jitendra16
    • RE: q-dialog accidental 'enter' key press issue

      @dobbel yes i am using it, but for small confirmations and prompts i have made a function with q-dialog plugin, in a mixin to reuse everywhere.

      posted in Framework
      J
      jitendra16
    • q-dialog accidental 'enter' key press issue

      I have a situation where i need to confirm a delete operation, I faced an issue with q-dialog is that if the user accidentally presses ‘Enter’ key then is treated as ‘onOk’. i want to execute ‘onCancel’ as default for ‘enter’ key.

      How can I achieve this?

      posted in Framework
      J
      jitendra16
    • RE: disabled q-item not disabling click on q-item-section

      @dobbel Yes, but it should prevent by default. As of now I am doing this

      @click="!isdisabled && something()"
      
      posted in Framework
      J
      jitendra16
    • disabled q-item not disabling click on q-item-section

      disabled q-item not disabling click on q-item-section, if we click on disabled q-item then also @click is getting called.

                             <q-item
                                  :disable="true"
                                  tag="label"
                                  v-ripple
                                  v-close-popup
                                >
                                  <q-item-section>
                                    <q-item-label  
                  @click="something()"
                                    >Update</q-item-label>
                                  </q-item-section>
                                </q-item>
      
      posted in Framework
      J
      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