Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Help
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • X

      Stepper navigation buttons
      • xereda

      2
      0
      Votes
      2
      Posts
      801
      Views

      rstoenescu

      Will push a commit to allow this which will get into v0.9 later this week. Thanks.

    • X

      Shadow on the button labels.
      • xereda

      2
      0
      Votes
      2
      Posts
      839
      Views

      rstoenescu

      @xereda Hi, write that CSS in App.vue style tag at the end.

    • X

      Site Examples
      • xereda

      10
      0
      Votes
      10
      Posts
      3655
      Views

      X

      @rstoenescu said in Site Examples:

      Well in this case yeah. The simulator is Quasar App, which needs to be an app on its own. People install in Google Play Store, need to have a feel of the framework. When on a documentation website, the examples need to teach a certain aspect but in a gradually manner. The simulator UI in this case would be a too complex example when starting to learn about FABs (too many features at once in an example that should focus on FABs only).

      Makes sense. Thank you.

      I already passed this on to the developers here. If they go to analyze the Ionic site, the same thing happens.

    • joaopaulofilho

      Touch directives
      • joaopaulofilho

      6
      0
      Votes
      6
      Posts
      1988
      Views

      joaopaulofilho

      Maannn… thank YOU by making this awesome work!

    • X

      Custom shadow in FAB button
      • xereda

      3
      0
      Votes
      3
      Posts
      1065
      Views

      X

      @rstoenescu thank you so much.
      I was added to the shadow class in “class”. 😢

    • X

      Labels of different sizes
      • xereda

      6
      0
      Votes
      6
      Posts
      1616
      Views

      rstoenescu

      No plan to do this on v0.9. Maybe on later releases.

    • X

      Update project Cordova
      • xereda

      9
      0
      Votes
      9
      Posts
      2784
      Views

      X

      @kosciak ok! Tks for help

    • X

      Icons and Splash Screen
      • xereda

      9
      0
      Votes
      9
      Posts
      5850
      Views

      rstoenescu

      Also, for Icons: https://cordova.apache.org/docs/en/latest/config_ref/images.html

    • X

      Drawler back button
      • xereda

      5
      0
      Votes
      5
      Posts
      1830
      Views

      X

      @rstoenescu I understand perfectly. And I believe that is correct. That’s right!

    • Martin

      How to set up npm / quasar on Windows (yep..)
      • Martin

      4
      0
      Votes
      4
      Posts
      1960
      Views

      rstoenescu

      Great! Glad everything is working.

    • R

      Scrollbar inside window
      • Remo

      3
      0
      Votes
      3
      Posts
      4480
      Views

      R

      Thanks! Turned out that my issue is a different one. In an attempt to avoid unnecessary DIVs I’ve added both layout-view and layout-padding to the same DIV. Turns out that this isn’t a good idea. Moved layout-padding into a separate DIV, scrollbar moved nicely to the right.

    • R

      Button in list component
      • Remo

      4
      0
      Votes
      4
      Posts
      2216
      Views

      rstoenescu

      Lists are not for everything. Secondary can only be icon or text.
      If you want something fancier, simply create your own using Grid CSS: http://quasar-framework.org/api/css-grid-layout.html

      Some unpolished example:

      <div class="row items-center"> <div class="auto">admin</div> <button class="primary">Edit</button> </div>
    • J

      Autocomplete
      • jclemgruber

      3
      0
      Votes
      3
      Posts
      1378
      Views

      rstoenescu

      Quasar will have its own “autocomplete” feature built-in in the future. Until then, you can use other libs like Remo suggested.

    • D

      How to regsiter custom components?
      • davewallace

      8
      0
      Votes
      8
      Posts
      6783
      Views

      rstoenescu

      Using the name property has no place in talking about how to require/register a component because it doesn’t affect it in any way. This means however you can use and there’s no reason or recommendation not to. It’s just out of the scope of custom component discussion.

    • R

      Segmented dropdown button
      • Remo

      2
      0
      Votes
      2
      Posts
      1331
      Views

      rstoenescu

      On the todo-list: https://github.com/quasarframework/quasar/issues/108

    • X

      Search Forum
      • xereda

      2
      0
      Votes
      2
      Posts
      755
      Views

      rstoenescu

      Search plugin installed. Thanks for reporting this 🙂

    • K

      Can you style normal elements with Quasar?
      css html select • • kosciak

      2
      0
      Votes
      2
      Posts
      1300
      Views

      rstoenescu

      Select documentation: http://quasar-framework.org/components/select.html
      You need a model and options. Options object looks like this (just an example):

      selectOptions: [ { label: 'Google', value: 'goog' }, { label: 'Facebook', value: 'fb' }, ... ]

      Use Vue computed properties if needed 😉

    • D

      How to handle validation with Stepper component?
      • davewallace

      3
      0
      Votes
      3
      Posts
      1519
      Views

      rstoenescu

      0_1478765572526_source.png

    • D

      Possible to use Styl variables with other Pre-processed languages?
      • davewallace

      4
      0
      Votes
      4
      Posts
      1396
      Views

      K

      http://www.sass2stylus.com/

      You can use this to go with 100% Stylus setup. 🙂

    • Martin

      anchor tags in <parallax-view>
      anchor parallax-view • • Martin

      4
      0
      Votes
      4
      Posts
      2769
      Views

      rstoenescu

      Some more things worth mentioning. I’ll just copy paste my comment on the latest Quasar starter kit / template:

      /* * NOTE! VueRouter "history" mode DOESN'T works for Cordova builds, * it is only to be used only for websites. * * If you decide to go with "history" mode, please also open /config/index.js * and set "build.publicPath" to something other than an empty string. * Example: '/' instead of current '' * * If switching back to default "hash" mode, don't forget to set the * build publicPath back to '' so Cordova builds work again. */

      Also, changing the “publicPath” should be carefully considered as it impacts the way you reference static assets.