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. bjbk
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 10
    • Best 1
    • Groups 0

    bjbk

    @bjbk

    1
    Reputation
    259
    Profile views
    10
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bjbk Follow

    Best posts made by bjbk

    • RE: Tips on upgrading to Electron v5

      Thanks! I understand that one will have to change the dependency in the package.json to v5 manually in order to update from v4?

      posted in Announcements
      bjbk
      bjbk

    Latest posts made by bjbk

    • RE: vue2-leaflet

      Now, to figure out why the marker png’s don’t work with Webpack.
      net::ERR_INVALID_URL

      posted in Framework
      bjbk
      bjbk
    • RE: vue2-leaflet

      in quasar.conf add the css to the css arrray:

      css: [
            '~leaflet/dist/leaflet.css',
            ...otherCss
          ],
      
      posted in Framework
      bjbk
      bjbk
    • RE: Hide qinput arrows when type=number

      Just a note: Be sure the style is not scoped to your component.
      In Electron this works:

      <style>
      input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
          -webkit-appearance: none;
          margin: 0;
        }
      </style>
      

      But, <style scoped>…</style> doesn’t.

      Scoping the style appears to work in browsers, but failed for me in Electron.

      posted in Framework
      bjbk
      bjbk
    • Quasar CLI -modern Nullish coalescing operator throws error

      Testing out the new modern flag for an Electron app build (Electron v9.0.0) and getting a build error.
      Unexpected token
      The error appears at areas of code using Nullish coalescing operator ??
      Removing the -modern flag and running Quasar dev -m electron then builds successfully.
      Is there something about the Nullish coalescing operator that is not modern or why does it throw an error?

      posted in CLI
      bjbk
      bjbk
    • RE: Tips on upgrading to Electron v5

      @rstoenescu understood. Thank you!

      posted in Announcements
      bjbk
      bjbk
    • RE: Tips on upgrading to Electron v5

      Thanks! I understand that one will have to change the dependency in the package.json to v5 manually in order to update from v4?

      posted in Announcements
      bjbk
      bjbk
    • RE: QUploader for images, how to compress images ?

      @nothingismagick should I just install vue-croppa as a dependency in my Quasar v1 project? What is the best way to import non Quasar vue-components?

      posted in Framework
      bjbk
      bjbk
    • RE: [v1] @quasar/app 1.0.0-beta.26 released!

      @mstarr I hear ya! Cheers!

      posted in Announcements
      bjbk
      bjbk
    • RE: [v1] @quasar/app 1.0.0-beta.26 released!

      @mstarr not sure if you have seen this project: https://github.com/quasarframework/app-extension-typescript
      In fact, Vue itself is moving in that direction: https://vuejs.org/v2/guide/typescript.html

      I expect better TS support will be baked into Vue and, therefore, by extension Quasar.

      posted in Announcements
      bjbk
      bjbk
    • RE: [v1] Filter feature in QSelect

      I too have been trying to get QSelect to work without having to write a new filter for each select. Very tedious and error prone. I have been posting my woes over on the Discord channel too, regarding adding a new value and acceptinging it with tab key instead of return then tab. I tried to see if we could even get a new QAutocomple or other such functionality. Hopefully there will be a better solution than the current QSelect option. At this point, I feel I’m going to have to create my own Vue component for this. I have a person add/edit dialog that is already over 600 lines if code. Mostly for redundant filterFN for each QSelect. It appears that QSelect is really only intended for simple arrays of strings. It gets really cranky if it receives as options data it doesn’t expect. Which really complicates code. However, that said, I may be expecting too much from the tool and should be using something else or destructuring my source data using …map() perhaps but there, again, not dynamic. Sorry this sounds like a rambling rant, it really isn’t. I love Quasar. I need better a Vue and JS skillset.

      posted in Framework
      bjbk
      bjbk