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. kiranvasi
    3. Best
    K
    • Profile
    • Following 0
    • Followers 1
    • Topics 5
    • Posts 18
    • Best 8
    • Groups 0

    Best posts made by kiranvasi

    • RE: Quasar v0.15 Roadmap

      Thanks again for this framework . Please don’t think we are asking too much 🙂

      but can we get drop down some thing similar to https://sagalbot.github.io/vue-select/ .
      I know our “Select” component is good , but

      1. On SELECT component “search” feature should activate immediately after clicking on it . Right now search feature takes two clicks . One click on SELECT component and other one on SEARCH

      2. adding new chips to the select component

      I mean simply some component like having features of both the components autocomplete and Select

      Thank You

      posted in Announcements
      K
      kiranvasi
    • RE: Drawer on top of the header

      Thank you @rstoenescu for taking time to respond to my question . Good luck . For now I am using the below work around ( Using two <q-layout> tags 🙂 I know this is not the way to do it . But to get the feel of look

      <template>
        <q-layout>
          <q-drawer   ref="leftDrawer">
            <div class="toolbar light">
              <q-toolbar-title :padding="1">
                Left-side Drawer
              </q-toolbar-title>
            </div>
            <p style="padding: 25px;" class="text-grey-7">
             Test Drawer
            </p>
          </q-drawer>
      <q-layout>
           <div slot="header" class="toolbar">
        </q-layout>   
          </div>
          <router-view class="layout-view"></router-view>
        </q-layout>
      </template>
      <script>
        export default {
          data () {
            return {
              search: ''
            }
          }
        }
      </script>
      <style type="text/css">
        .drawer{
          z-index: 999;
        }
      </style>
      posted in Framework
      K
      kiranvasi
    • RE: Future v0.14 Feature List

      This definitely puts Quasar framework in next level . Thanks for working on this and God bless you .

      posted in Announcements
      K
      kiranvasi
    • RE: Can we transition "maximized model" from the center of the screen?

      Thanks for your reply with the examples .( I am sorry I didn’t notice transition property earlier in the document and I think I am getting old )
      Juts used simple fade transition with the transition prop .

      ( From Vuejs document )

      .fade-enter-active, .fade-leave-active {
        transition: opacity .5s
      }
      .fade-enter, .fade-leave-to  {
        opacity: 0
      }
      
      posted in Framework
      K
      kiranvasi
    • RE: The 0.14 beta release is available!

      Thanks a lot for your hard work on it and good luck

      posted in Announcements
      K
      kiranvasi
    • NUXT with Quasar

      Hello All,

      I am trying to use Quasar NUXT template , but not sure if I am using it correctly .

      https://github.com/quasarframework/quasar-template-nuxt ( Do I have to download this and copy it some folder…? I don’t find templates folder in version 0.15)

      I am trying to run the below command as per the instructions on the above link , but is generating folder name with “nuxt” and not “My-project” . Moreover the generated folder structure doesn’t contain nuxt.config.js

      quasar init nuxt my-project

      Could any one please help me on this ?

      Thanks for your help

      posted in Framework
      K
      kiranvasi
    • SELECT and CHIPS INPUT

      Hello All,

      I see we have SELECT ( MENU ) and Chips input . Can we combine these and get something like below kind of behavior ?
      We have “SELECT” with “filter / search” , but this needs two clicks to search . One to select and other to search ( Can we search directly search the SELECT list of options ? )

      alt text

      posted in Framework
      K
      kiranvasi
    • RE: NUXT with Quasar

      Hello All ,

      Sorry to bug you all again…Using NUXT takes us to the next level in development . Any one has any idea on using it?
      I don’t see any updates to it in the last 6 months . Is it still valid ? Because in the Quasar Roadmap it says NUXT will be available in version 1 .
      Ane one has any idea when version 1 will be available ?

      Thank You All

      Thank You

      posted in Framework
      K
      kiranvasi