Its common to have ‘export’ and ‘print’ table data. This is missing feature in q-table, can we have it?
Best posts made by jitendra16
-
Export(pdf/csv/word/xlsx) and Print feature request in q-table
-
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
-
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.
-
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. -
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<% } %>”>
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.
-
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.
-
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 .
-
RE: How to make q-tree horizontal instead of vertical, for big/wide screens?
@metalsadman Can you please list this in ‘requested features’?
-
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?
-
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.
- user starts the sequence on btn click
- App open WA API for 1st record.
- user send the msg on whatsapp App
- Comes back to our App
- 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)}`
-
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 */ }
-
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.