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. Oggo
    3. Posts
    O
    • Profile
    • Following 0
    • Followers 1
    • Topics 3
    • Posts 13
    • Best 0
    • Groups 0

    Posts made by Oggo

    • RE: Selectively build single component

      Something like the Vue Web Components would be really helpful and popular. +1

      posted in Framework
      O
      Oggo
    • RE: How to run a Quasar 0.17 project after system migration to 1.0?

      I am facing the same problem with npm running 0.17.x app with quasar v1.0.0-rc.4 on linux. Is there a solution with npm? I would not like to switch to yarn 😕

      posted in Help
      O
      Oggo
    • RE: @quasar/qcalendar v1.0.0-alpha.2 Release!

      Hi @Hawkeye64, qcalender is awesome and the documentation is very nice. I would like to ask you are you using some tool (like vuepress) for the documentation or you have just another quasar project for it?

      Thanx in advance and cheers,
      Oggo

      posted in [v1] App Extensions
      O
      Oggo
    • RE: QFlashcard v0.0.1-alpha.12 Release!

      @Hawkeye64 nice! ftw!

      posted in [v1] App Extensions
      O
      Oggo
    • RE: QUploader model

      Hi @syflex ,
      it is great you are ready to help me. So my use case is: i have dynamically created quploader fileds (see the snippet below). What i want to have is when a file get uploaded i need to know to which quploader it belongs. It means i want to have something like a map quploader -->> uploaded file. When i set the uploaded event handler i can either call a function with (file, xhr) parameters, which is helpful but i don’t know from which quploader it is called. If i call my callback function for example fileUploaded(bIndex) i will know which quploader is calling, but there will be no information about the file uploaded 😞 As a visual component i also think quploader is great, but i desperately need something like v-model for this component 😕 Thanx again in advance, every help will be well appreciated.

        <div v-for="(bCol, bIndex) in this.dataModel"
          v-if="isVisibleDiv(bCol)" :key='bIndex' class="col-4">
          <q-uploader v-if="isVisibleUploader(bCol)" url="http://myServerUrl.com" extensions=".jpg,.png"
      	  @add="fileAdded"
            @uploaded="fileUploaded"/>
        </div>
      posted in Framework
      O
      Oggo
    • RE: QUploader model

      Do really someone using this component?!! How do you handle it without model? I’m trying to get it work with maximum 3 images uploaded, but i am failing to find the way how? It’s a showstopper and i consider to change the framework! Is there someone able to give a good advise?

      posted in Framework
      O
      Oggo
    • QUploader model

      Hi guys,
      i would like to have something like v-model for a q-uploader, so that when my form is submitted i can get the url of the uploaded file. How can i achieve it?

      posted in Framework
      O
      Oggo
    • RE: Building an Electron File Explorer with Quasar (and Vue)

      @Hawkeye64 great work!
      I am also interested in Electron development. Currently i am considering strategy for unit and e2e tests? What i found until now is mocha for unit tests and spectron eventually cypress for integration / e2e tests. Which approach would you recommend?

      Cheers,
      Oggo

      posted in Show & Tell
      O
      Oggo
    • RE: Dynamic tabs setup

      Thanx guys,
      @metalsadman hmmmm it seems to work in your sample, so i will have to drill deeper to find my error. Thanx a lot for the sample!

      Cheers,
      Oggo

      posted in Framework
      O
      Oggo
    • RE: Dynamic tabs setup

      Sure, here is the fiddle: https://jsfiddle.net/Oggzter/4t39h7fg/5/
      I have no idea how to make the import in the fiddle, but i hope the use case is clear. As soon as i return the array, it works fine. When i use the imported function “getTabsMdl” the tabs are shown, but no tab is selected 😕

      posted in Framework
      O
      Oggo
    • Dynamic tabs setup

      Hi guys, i’m using quasar 0.17 trying to load the tabs for my layout dynamically from file. Something like this:
      <template>
      <q-layout view=“lHh Lpr lFf”>
      <q-layout-header>
      …
      <q-tabs v-model=“selTabMdl”>
      <q-route-tab v-for="(bTab, bTIndex) in _getTabsMdl()" :to=“bTab.to” :label=“bTab.name” :key=“bTIndex” slot=“title” />
      </q-tabs>
      …
      import { getTabsMdl } from ‘./myTabsModel’

      export default {
      …
      methods: {
      _getTabsMdl () {
      return getTabsMdl()
      // return [{name: ‘tt1’, to: ‘/’}, {name: ‘tt2’, to: ‘/’}, {name: ‘tt3’, to: ‘/’}]
      },
      …

      When i call the function getTabsMdl() from the file myTabsMdl.js the tabs show up, but there is no default tab selected. Since i return the array (the commented code) everything is fine and the default tab is selected 😮 Can someone give me an advice, what should i do to get it work?

      Thanx in advance!

      posted in Framework
      O
      Oggo
    • RE: 0.15.3 quasar vs local i18n

      @PeterHewat great job!
      For the sake of accuracy it is kebabToCamel 🙂

      posted in Help
      O
      Oggo
    • Carousel with multiple visible slides

      Hi, i’m searching for a carousel with multiple visible slides, for example 3 from 10. It is most common on a e-commerce websites. Do someone have an extension of the q-carousel tab?

      Thanx in advance

      posted in Help
      O
      Oggo