I have used the QResizeObserver and on resize method I use the chart reference and then called the resize method
this.line_chart.resize();
I have used the QResizeObserver and on resize method I use the chart reference and then called the resize method
this.line_chart.resize();
Hello Guys, I have updated the Quasar Echarts demo app with Echarts v5.You can access it using the following URL.
Github - https://github.com/pratik227/quasar-echarts
Demo - https://quasar-echarts-v5.netlify.app/
@Incremental Sorry but I don’t have any idea
@Incremental It’s Just front-end there is no back-end in this app.
Hi @gs86,
I never worked on server side pagination and filter with QTable. I have tried to implement in QGrid but no luck yet.
Thanks
QGrid v0.0.5 has been released!!
New -
Demo - https://quasar-qgrid.netlify.app/examples
*edit: modded typo - @metalsadman
@metalsadman added new props for paginations and visible columns etc.Planning to add a grouping of columns in new release
Hello guys,
Just released new Quasar Gaming Template !! Any feedback will be greatly appreciated.
Github - https://github.com/pratik227/quasar-gaming
Demo - https://quasar-gaming.netlify.app/
Thank You
Please refer the following sandbox - https://codesandbox.io/s/94yv5v6vrw?file=/index.js
Hello all, I have updated the Quasar admin demo. You can access it using the following URL.
New tabs added:
Github - https://github.com/pratik227/quasar-admin
Demo link - https://quasar-admin-demo.netlify.com/
Please refer the following codepen I think it will help.
https://codepen.io/anon/pen/gNrdyL?editors=1010
https://stackoverflow.com/questions/56569707/how-do-i-identify-the-cell-selected-in-a-quasar-table
New version is released!! with default expand all feature.
Try this code.
import { Platform } from 'quasar'
let custom_page;
if(Platform.is.mobile){
custom_page ="mobileView.vue"
}
else{
custom_page ="mainLayout.vue"
}
In route DIct .
{ path: '/', name: "/", component: () => import('layouts/' + custom_page)},