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

    flight9

    @flight9

    1
    Reputation
    194
    Profile views
    13
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    flight9 Follow

    Best posts made by flight9

    • RE: How to make QProgress shown in the same line?

      @metalsadman awesome!

            <div class="col-9">
              <q-progress
                  :percentage="progress"
                  height="25px">            
              </q-progress>      
            </div> 
      

      these code can make qprogress shown inline, very helpful, thanks! 🙏

      posted in Help
      F
      flight9

    Latest posts made by flight9

    • RE: How to fix columns with Quasar-framework?

      @metalsadman Thank you.
      I found in some lower version chrome-core browser, this ‘Sticky column’ does not work.

      posted in Framework
      F
      flight9
    • RE: How to fix columns with Quasar-framework?

      @s-molinari sorry, I mean another ‘fixed’ just like ‘frozen column’ in Excel. still thanks

      posted in Framework
      F
      flight9
    • RE: How to fix columns with Quasar-framework?

      Yes, this feature is needed in my project. When will this feature come back?

      posted in Framework
      F
      flight9
    • RE: QInput Lazy Modifier?

      yes, same problem. Using .lazy seems not trigger the change event.

      posted in Help
      F
      flight9
    • RE: File / directory select?

      I’m finding this. Thanks a lot. @Zyme

      posted in Help
      F
      flight9
    • RE: How to control the sublabel color of `q-collapsible`?

      @Narmer23 thanks, I found solution, here are some codes for others to ref later:

      <q-collapsible>
                      <template slot="header">
                        <q-item-side icon="fa fa-square" />
                        <q-item-main>
                          <q-item-tile :label="true">
                            {{ itselfStatus.node && itselfStatus.node.tagValue.value }}
                          </q-item-tile>
                          <q-item-tile :sublabel="true" :color="itselfStatus.valid ? 'positive' : 'negative'" >
                            {{ itselfStatus.valid ? $t('OK') : $t('failed') }}
                          </q-item-tile>
                        </q-item-main>
                        <q-item-side>
                          {{ !itselfStatus.valid && itselfStatus.forcible ? 'forcible': ''}}
                        </q-item-side>
                      </template>
      
      posted in Help
      F
      flight9
    • How to control the sublabel color of `q-collapsible`?

      I would like to change the sublabel color of q-collapsible and control it by a varible.

      I only found there is a property header-class="text-red" which can control the label color, but not the sublabel.

      My code is like this:

      <q-collapsible icon="fa fa-square"
                    :label="itselfStatus.node.tagValue.value"
                    :sublabel="itselfStatus.valid ? $t('OK') : $t('failed')"
      >
      ....
      </q-collapsible>
      

      0_1548058697243_collapsible-121161223154.jpg

      posted in Help
      F
      flight9
    • RE: How to make QProgress shown in the same line?

      @metalsadman awesome!

            <div class="col-9">
              <q-progress
                  :percentage="progress"
                  height="25px">            
              </q-progress>      
            </div> 
      

      these code can make qprogress shown inline, very helpful, thanks! 🙏

      posted in Help
      F
      flight9
    • RE: How to make QProgress shown in the same line?

      @metalsadman the status bar may look like below:
      0_1540801063820_statusbar-029161708007.jpg

      posted in Help
      F
      flight9
    • How to make QProgress shown in the same line?

      QProgress seems, by default, is a block element as demos in doc:
      https://quasar-framework.org/components/progress-bar.html

      I would like to create a status bar with it, how can I make it shown as a inline element to sit aside my other icons?

      posted in Help
      F
      flight9