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. malmil
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 6
    • Best 0
    • Groups 0

    Posts made by malmil

    • RE: 'cordova-plugin-camera' with Quasar

      I use the same plugin for a project and it works perfectly.
      Your code does look very similar to mine. The only difference I’ve spotted is that I’ve declared navigator before camera in the options like so:
      encodingType: navigator.camera.EncodingType.JPEG,
      mediaType: navigator.camera.MediaType.PICTURE,

      Hope this helps

      posted in Help
      M
      malmil
    • RE: How to order a select by name?

      You could probably sort your select options in created() like so:
      data() {
      return {
      selectOptions: [‘Banana’, ‘Orange’, ‘Apple’],
      }
      },
      created() {
      this.selectOptions.sort()
      }

      I don’t think it’s a built in way to sort in q-select

      posted in Help
      M
      malmil
    • q-page-sticky not sticky on scroll with keyboard open on ios

      I have a q-page-sticky that works as a menu on the bottom of my app.
      On some of my pages I have a search field. When I type into the search field, the keyboard shows and if I don’t click on “done”-button and starts scrolling the q-page-sticky follows.
      Any idea on how to prevent this? Is it possible to set the ios keyboard to done on scroll?

      posted in Help
      M
      malmil
    • RE: q-datetime-picker not working as expected on ios

      I built the ios application by using this command: quasar build -m cordova -T ios
      So it’s weird the datepicker does not show in ios-theme in the first place.

      quasar build -m cordova -T ios -t mat does not solve this issue
      and quasar build -m cordova -T ios -t ios gives me the ugly ios-version that works for ios.

      posted in Help
      M
      malmil
    • q-datetime-picker not working as expected on ios

      Hi!
      The q-datetime-picker is not working as expected on ios. The forth and back buttons are not responding. (They respond as expected on android). Is it not possible to use mat-theme for datepicker on ios?

      0_1544255618125_Screenshot 2018-12-08 at 08.40.35.png

      this is how it is included in the code:
      <q-datetime-picker v-model=“date” type=“date” @input=“addDate”/>

      posted in Help
      M
      malmil