By UX it’s better to place changing the view on the top, not on the bottom of the table.

Best posts made by dmitry.polushkin
-
RE: How to add a q-toggle to the bottom of a q-table ?
Latest posts made by dmitry.polushkin
-
RE: How to show QDate within the QInput using QPopupProxy when width of QInput is larger than QDate
@metalsadman thank you so much! Works perfect
-
RE: How to show QDate within the QInput using QPopupProxy when width of QInput is larger than QDate
@Stanley doesn’t work as expected.
I need to open dialog box when I click on the input, not on the icon.
It opens in a dialog box only when the height is too small, when it’s desktop it opens as dropdown with element full width:No way to change the width of the calendar container.
-
How to show QDate within the QInput using QPopupProxy when width of QInput is larger than QDate
How to show QDate within the QInput using QPopupProxy in case if QInput has width more than QDate?
Please see an example:
https://codepen.io/dmitry-polushkin/pen/GRoOQMV
Is there are any way to control with of the q-popup-proxy?
Maybe you can suggest some other solutions? -
RE: [SOLVED] How to emit q-select @input only on change
@metalsadman thanks, that solved my issue. Really forgot the idea behind the v-model.
-
RE: Export(pdf/csv/word/xlsx) and Print feature request in q-table
Do you mean to generate table in those formats you have listed on the client-side and to return as downloadable objects?
-
Select dropdown with multiple columns
Is there a way to implement input select dropdown with the multiple columns, similar to this one or it’s better to use own component based on the fieldset + dropdown?
-
RE: Why is there no webpack alias to src by default?
It’s possible to use webpack with IDEA IDE: https://www.jetbrains.com/help/idea/using-webpack.html
Just set separatewebpack.js
file and include it into thequasar.conf.js
-
RE: Why is there no webpack alias to src by default?
Yes, I remember I was first time confused about
src
alias, but now I’m ok with it, as mainly working with quasar-only.Main issue I have that IDE (intellij) always trying to use relative paths for the modules. Probably it’s possible to configure it somewhere, but by this moment I’m fixing that by hands.
-
RE: [SOLVED] Scroll q-select dropdown options on specific value
@s-molinari thanks for suggesting. Checked the source code and there are already a solution using the function
moveOptionSelection
.So in total place this into a method:
if (!this.$refs.startTime.value) { this.$nextTick(() => { this.$refs.start.moveOptionSelection(20, false) }) }
And call it from select:
ref="startTime" @popup-show="setStartTimeToMiddle"
-
RE: 【SEO & SSR】How can I reduce the <style data-vue-ssr-id ... like tag
@iamike have you solved this issue?