Awesome work guys, can’t wait!
Best posts made by supercat
-
Side Drawers not working in small screens using v-model
I am using v-model powered by a vuex variable to control the right and left drawers. They trigger fine on desktop view but once the breakpoint is reached they may no longer be triggered by v-model changes, you must use this$refs.layout method. Has anyone experienced this or do I have something wrong here?
-
RE: Side Drawers not working in small screens using v-model
@benoitranque for me this solution would lead to bad practice as I have all kinds of logic to determine whether the the left and right drawers should be opened or closed in a Vuex mutation. This way i would be forced to put that logic in every deep component that can change the sidebars rather than one succinct commit call. The documentation gives an example of using v-model to handle the sidebars and it works perfectly in desktop mode. So I am seconding @dsahoo that I also think this is a bug.
Latest posts made by supercat
-
RE: q-btn :loading prop kills :disable prop
Thanks everyone for the great support as always!
-
q-btn :loading prop kills :disable prop
When a condition that makes :disabled work is true after :loading prop has run it no longer makes the button disabled, please see this pen… https://codepen.io/anon/pen/GaOVBX?&editable=true&editors=101
-
RE: Data Table sticky header
For Quasar v1 I have made this pen… https://codepen.io/anon/pen/wObEWq I would love to see something like this officially supported.
-
RE: Side Drawers not working in small screens using v-model
@benoitranque for me this solution would lead to bad practice as I have all kinds of logic to determine whether the the left and right drawers should be opened or closed in a Vuex mutation. This way i would be forced to put that logic in every deep component that can change the sidebars rather than one succinct commit call. The documentation gives an example of using v-model to handle the sidebars and it works perfectly in desktop mode. So I am seconding @dsahoo that I also think this is a bug.
-
Side Drawers not working in small screens using v-model
I am using v-model powered by a vuex variable to control the right and left drawers. They trigger fine on desktop view but once the breakpoint is reached they may no longer be triggered by v-model changes, you must use this$refs.layout method. Has anyone experienced this or do I have something wrong here?
-
[Feature Request] Callback on Pagination of dataTable
I would like to do specific things when the pagination happens, it would be great to have a callback for when they change the page or change the number per page.
Keep up the great work
Really looking forward to dynamic columns in 0.15 does anyone have an ETA ?
-
RE: Custom column selector for QDataTable
I tried to do this using a computed value for Columns and pushing each column into an array of columns if the condition is met. But unfortunately the table does not update when a condition changes. I hope this will be possible in the new version. Or does anyone know another way to do this in the meantime?