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. Pratik Patel
    3. Posts
    • Profile
    • Following 8
    • Followers 0
    • Topics 7
    • Posts 34
    • Best 13
    • Groups 0

    Posts made by Pratik Patel

    • RE: Quasar ECharts Sample Application

      I have used the QResizeObserver and on resize method I use the chart reference and then called the resize method

      this.line_chart.resize();

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: Quasar ECharts Sample Application

      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/

      QuasarEchartV5.png

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: Updated Quasar Admin Template

      @Incremental Sorry but I don’t have any idea

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: Updated Quasar Admin Template

      @Incremental It’s Just front-end there is no back-end in this app.

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QGrid v0.0.2 has been released!!

      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

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QGrid v0.0.2 has been released!!

      Yes, @Hawkeye64 🙂

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QGrid v0.0.2 has been released!!

      QGrid v0.0.5 has been released!!

      New -

      • Added Grouping of the columns feature

      Demo - https://quasar-qgrid.netlify.app/examples

      *edit: modded typo - @metalsadman

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QGrid v0.0.2 has been released!!

      @dobbel Thanks.

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QGrid v0.0.2 has been released!!

      @metalsadman added new props for paginations and visible columns etc.Planning to add a grouping of columns in new release

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QGrid v0.0.2 has been released!!

      QGird v0.0.3 has been released!!

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • Quasar Gaming Template

      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/

      screenshot-quasar-gaming.netlify.app-2020.07.21-11_29_15.jpg

      Thank You

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: Razvan is taking some time off

      All the best for Ravzan, get well soon.

      posted in Announcements
      Pratik Patel
      Pratik Patel
    • RE: List component with drag and drop

      Please refer the following sandbox - https://codesandbox.io/s/94yv5v6vrw?file=/index.js

      posted in Framework
      Pratik Patel
      Pratik Patel
    • RE: Updated Quasar Admin Template

      Thank You @dobbel

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • Updated Quasar Admin Template

      Hello all, I have updated the Quasar admin demo. You can access it using the following URL.

      New tabs added:

      • CRM Dashboard
      • Taskboard
      • Paginations and Filters

      Github - https://github.com/pratik227/quasar-admin

      Demo link - https://quasar-admin-demo.netlify.com/quasar-admin-demo.netlify.app_Dashboard2.jpg

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: (Multi) Select Cells in Table

      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

      posted in Help
      Pratik Patel
      Pratik Patel
    • RE: QHierarchy v0.0.1 has been released!

      @Martin-F I will try

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: QHierarchy v0.0.1 has been released!

      New version is released!! with default expand all feature.

      Github - https://github.com/pratik227/quasar-qhierarchy

      Demo - https://quasar-qhierarchy.netlify.com

      posted in Useful Tips (NEW)
      Pratik Patel
      Pratik Patel
    • RE: [Solved] How to dynamically change layout in router base on platform

      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)},
      
      posted in Framework
      Pratik Patel
      Pratik Patel
    • RE: How to add action button in table cell. I am using code image below

      Use cell-name slot.

      Doc - https://quasar.dev/vue-components/table#Example--Body-cell-[name]-slot

      https://codepen.io/Pratik__007/pen/eYNvvva?editors=1010

      posted in Framework
      Pratik Patel
      Pratik Patel