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. Nicholas
    N
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 38
    • Best 8
    • Groups 0

    Nicholas

    @Nicholas

    12
    Reputation
    603
    Profile views
    38
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Nicholas Follow

    Best posts made by Nicholas

    • RE: history mode for web and not for cordova

      Yes, I did : mode: (Platform.is.cordova ? ‘’ : ‘history’).
      Works perfectly 🙂

      posted in Framework
      N
      Nicholas
    • RE: Quasar v0.15 is out!

      Been waiting ages for this! Excellent work! This update is simply awesome.!

      posted in Announcements
      N
      Nicholas
    • My Portfolio :-)

      Hello Quasar Community!

      I’d like to take an opportunity to show off my new portfolio website which I’ve built using Quasar 0.16 and WordPress!

      https://nickzuccarelli.com.au/

      Feel free to take a look and let me know what you think!

      posted in Show & Tell
      N
      Nicholas
    • RE: [Bug] UMD q-list items (text colour and underline)

      @s-molinari
      Thanks for that Scott.
      Yeah I figured the solution was simple, but I gathered that this fix could be added to the underlying Quasar CSS.
      All good though 🙂

      posted in Help
      N
      Nicholas
    • RE: Quasar & Quasar CLI v0.17 aka SSR - Developer Preview

      What an amazing update! Brilliant stuff.

      posted in Announcements
      N
      Nicholas
    • RE: My Portfolio :-)

      @shone Thank you for the feedback! Much appreciated and I’ll take it into consideration in the next iteration of changes I make.

      There is no live demo of 1SPAN CMS at this point as the project is on-hold, but I’ll probably put up a live demo soon 🙂

      posted in Show & Tell
      N
      Nicholas
    • RE: Flex CSS XXL size?

      @leon
      Created a workaround for now. Add the following to your quasar.variables.styl file:

      @media (min-width: 1500px) {
        .col-xxl {
          max-width: 100%;
          flex-basis: 0;
          flex-grow: 1;
        }
        .col-xxl-auto {
          width: auto;
          flex: 0 0 auto;
        }
        .col-xxl-1 {
          flex: 0 0 8.3333%;
        }
        .row > .col-xxl-1 {
          max-width: 8.3333%;
        }
        .offset-xxl-1 {
          margin-left: 8.3333%;
        }
        .col-xxl-2 {
          flex: 0 0 16.6667%;
        }
        .row > .col-xxl-2 {
          max-width: 16.6667%;
        }
        .offset-xxl-2 {
          margin-left: 16.6667%;
        }
        .col-xxl-3 {
          flex: 0 0 25%;
        }
        .row > .col-xxl-3 {
          max-width: 25%;
        }
        .offset-xxl-3 {
          margin-left: 25%;
        }
        .col-xxl-4 {
          flex: 0 0 33.3333%;
        }
        .row > .col-xxl-4 {
          max-width: 33.3333%;
        }
        .offset-xxl-4 {
          margin-left: 33.3333%;
        }
        .col-xxl-5 {
          flex: 0 0 41.6667%;
        }
        .row > .col-xxl-5 {
          max-width: 41.6667%;
        }
        .offset-xxl-5 {
          margin-left: 41.6667%;
        }
        .col-xxl-6 {
          flex: 0 0 50%;
        }
        .row > .col-xxl-6 {
          max-width: 50%;
        }
        .offset-xxl-6 {
          margin-left: 50%;
        }
        .col-xxl-7 {
          flex: 0 0 58.3333%;
        }
        .row > .col-xxl-7 {
          max-width: 58.3333%;
        }
        .offset-xxl-7 {
          margin-left: 58.3333%;
        }
        .col-xxl-8 {
          flex: 0 0 66.6667%;
        }
        .row > .col-xxl-8 {
          max-width: 66.6667%;
        }
        .offset-xxl-8 {
          margin-left: 66.6667%;
        }
        .col-xxl-9 {
          flex: 0 0 75%;
        }
        .row > .col-xxl-9 {
          max-width: 75%;
        }
        .offset-xxl-9 {
          margin-left: 75%;
        }
        .col-xxl-10 {
          flex: 0 0 83.3333%;
        }
        .row > .col-xxl-10 {
          max-width: 83.3333%;
        }
        .offset-xxl-10 {
          margin-left: 83.3333%;
        }
        .col-xxl-11 {
          flex: 0 0 91.6667%;
        }
        .row > .col-xxl-11 {
          max-width: 91.6667%;
        }
        .offset-xxl-11 {
          margin-left: 91.6667%;
        }
        .col-xxl-12 {
          flex: 0 0 100%;
        }
        .row > .col-xxl-12 {
          max-width: 100%;
        }
        .offset-xxl-12 {
          margin-left: 100%;
        }
      }
      
      posted in Framework
      N
      Nicholas
    • QTab dropdown menus

      Hiya,

      I’m wondering if we could possibly get support for QTab/QRouteTab dropdown menus in the future (working similar to the btn-dropdown except in tab-form).

      posted in Help
      N
      Nicholas

    Latest posts made by Nicholas

    • RE: How do I modify the output key in webpack config

      Nice solution. I came across the same error using that package 🙂

      posted in Help
      N
      Nicholas
    • RE: Detecting "platform is desktop" does not seem to work with Firefox or Edge on SSR with PWA client takeover

      I have come across this bug too.

      My layout drawer keeps closing whenever I enter the page on Firefox and Edge (I’m using a standard Quasar 1.0 SPA).
      Works fine on Safari, Chrome.

      posted in Help
      N
      Nicholas
    • RE: [Bug] UMD q-list items (text colour and underline)

      @s-molinari
      Thanks for that Scott.
      Yeah I figured the solution was simple, but I gathered that this fix could be added to the underlying Quasar CSS.
      All good though 🙂

      posted in Help
      N
      Nicholas
    • [Bug] UMD q-list items (text colour and underline)

      As continued from this thread: https://github.com/quasarframework/quasar/issues/2471

      I’m trying out the UMD version of Quasar and I’m having problems with text colour and underline on q-items which use tag="a"

      Following fiddle shows the problem: https://jsfiddle.net/waugrryy/5907/

      In case the link doesn’t work, this image shows the problem:
      https://i.gyazo.com/a5c265d17ef83efb06c7a9cb882e7ebf.png

      posted in Help
      N
      Nicholas
    • RE: Datatable: Hide columns in mobile view?

      @ssuess That’s right. I have got it working based on screen size, but like you mentioned, its either everywhere or nowhere. It is a working solution in my case though; but it would be a lot easier if we could use CSS classes to manipulate the table instead.

      posted in Help
      N
      Nicholas
    • RE: Datatable: Hide columns in mobile view?

      +1.
      Can’t find any information in the docs yet. I’d like a class attribute in the columns array which lets us do something like:
      class: ‘gt-sm hidden-sm’ etc

      posted in Help
      N
      Nicholas
    • RE: Quasar v0.17.7 & CLI v0.17.8 + Quasar Extras v2.0.5 are out!

      Brilliant update as always, keep up the great work!

      posted in Announcements
      N
      Nicholas
    • RE: Quasar & Quasar CLI v0.17.0 are out! SSR arrived.

      @rstoenescu Thanks for quickly fixing that notify bug! 🙂

      posted in Announcements
      N
      Nicholas
    • RE: Quasar & Quasar CLI v0.17.0 are out! SSR arrived.

      What a brilliant release. Fixed a lot of small things I’ve had issues with.
      Cheers!

      posted in Announcements
      N
      Nicholas
    • RE: Quasar & Quasar CLI v0.17 aka SSR - Developer Preview

      What an amazing update! Brilliant stuff.

      posted in Announcements
      N
      Nicholas