Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Shoooryuken
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 17
    • Best 0
    • Groups 0

    Shoooryuken

    @Shoooryuken

    0
    Reputation
    8
    Profile views
    17
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Shoooryuken Follow

    Latest posts made by Shoooryuken

    • RE: Microsoft Active Directory authentication with Firebase

      hi,
      it’s not a quasar question, but you can use vue-adal (exemple in repo)

      https://github.com/survirtual/vue-adal

      https://github.com/AzureAD/azure-activedirectory-library-for-js

      posted in Help
      Shoooryuken
      Shoooryuken
    • RE: q-editor custom bold handler

      Hi, sorry it’s not very clear for me.

      whatsapp use markdown ?
      wysiwyg create an html text, but you dont want real html ?
      quasar editor (wysiwyg) let you creating button, you can just create whatever you want as button and component
      in my opinion, you want to recreate the wheel

      posted in Help
      Shoooryuken
      Shoooryuken
    • RE: Form Component: Range props - markers

      hi,
      if you want to change the color of the line or the point under the line, just change css 🙂

      for the line

      .q-slider__track-container--h{ background: red }
      

      for the point/maker the 2 first color are for the makers and lasts color for the line…

      background-image: repeating-linear-gradient(90deg,red,red,2px,transparent 0,transparent)
      ```
      posted in Help
      Shoooryuken
      Shoooryuken
    • Best way to use Skeleton

      Hi all,
      I would like to integrate Skeleton into my app.
      https://quasar.dev/vue-components/skeleton

      I load my data from a method (axios consumes an api) called in the mounted.
      I can load a “skeleton” data and update my DOM from this value, but i dont know if it’s the best way 🙂

      axios({
              method: 'GET',
              url: process.env.API_URL + '/method/' + this.user.id + '/' + this.day,
              headers: { 'Content-Type': 'application/json' }
            })
              .then(response => {
                this.poste = response.data
               this.skeleton = false
              })
              .catch((e) => {
                this.$q.notify({ message: e, type: 'negative' })
              })
      
              <q-item-section avatar>
                <q-skeleton type="QAvatar" animation="fade" v-if="skeleton" />
                <q-avatar v-else><img :src="poste.avatar"><q-avatar/>
              </q-item-section>
      ```
      posted in Help
      Shoooryuken
      Shoooryuken
    • RE: Q-table no horizontal scroll on narrow window

      hi, it is possible that <q-td auto-width interfere with <q-table dense can you try to delete auto-width ?

      posted in Help
      Shoooryuken
      Shoooryuken
    • RE: Notification YouTube/Google like style?

      a dot instead what ?
      can you be more explicit?

      you juste want an empty badge ?

      <q-btn push color="white" text-color="primary" label="Unread Mails">
            <q-badge color="orange" floating>&nbsp;</q-badge>
          </q-btn>
      

      you want a exclamation ?

      <q-btn push color="white" text-color="primary" label="Unread Mails">
           <q-badge color="orange" floating>!</q-badge>
         </q-btn>
      

      you want an icon ?

      <q-btn push color="white" text-color="primary" label="Unread Mails">
           <q-badge color="orange" floating><q-icon name="warning" /></q-badge>
         </q-btn>
      
      posted in Help
      Shoooryuken
      Shoooryuken
    • RE: q-popup-edit with q-input leads to Error in v-on handler: "TypeError: setting getter-only property "value""

      Hi,
      i’m not an expert, but, i dont think you understand how vuex can help you.
      first, i dont think to get data directly by state is really good.
      second,you cant change your data directly.

      https://forum.quasar-framework.org/topic/3607/solved-qpopupedit-in-qtable-with-vuex-data-source-do-not-emitted-save-event
      this post can help you more than me 😉 good luck

      posted in Help
      Shoooryuken
      Shoooryuken
    • Dark Mode on firefox, always dark

      Hi all,

      I integrated the darkmode plugin in one of my developments.

      It’s very nice on chrome, but when I test in firefox, it doesn’t matter if dark mode is activated in my browser, console.log(this.$q.dark.isActive); always returns true …

      in quasar.conf.js i set dark mode status on auto

      In firefox, i select the clear template, i delete cookies and cache and refresh my app page, but it’s always dark…

      posted in Framework
      Shoooryuken
      Shoooryuken
    • RE: Blank page when deploying to firebase

      Hi,
      i never deploy to firebase, but, can you try to change the destination by “/index.html” instead of “/dist/spa/index.html”
      you already specify public directory previously.

      posted in Help
      Shoooryuken
      Shoooryuken
    • RE: q-table row editing?

      https://quasar.dev/vue-components/table#Popup-editing

      you can edit 1 by 1 cellule of your table.
      if you want editing à line, you can code this, i think is not really hard.

      posted in Help
      Shoooryuken
      Shoooryuken