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. quasar_beginner
    Q
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 8
    • Best 0
    • Groups 0

    quasar_beginner

    @quasar_beginner

    -1
    Reputation
    11
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    quasar_beginner Follow

    Latest posts made by quasar_beginner

    • Did you get support from the Quasar Dev Team or the Community?

      Hi Guys,
      I have posted 3 topics in the last few days but got no response from the Dev Team as well as the Community. Hmmm…

      Q-Table not refreshing… Many people have had the same problem as I saw in the Community correspondence

      Q-Tab-Panel with dynamic component not swipeable… no comment from the dev-team as well as community

      Qcal - workweek has no event… maybe the solution is simple but not visible yet. But I have an idea! - no response from the Qcal-Team!

      I’m y 59 years old developer starting with cobol over php to vue since years. My last years, I developed apps with vue , vuetify, bootstrap and query-mobile…

      Now, my first project with Quasar has started very well but stopded on some problems - asking here the community and dev team but no response…

      Quasar has a great functionality and I like it but if you have a problem you are alone. Vuetify hasn’t the functionality but the support is much better.

      So for the future, there is no choice for the next project.

      Sorry for my critical statement but I don’t want spend hours of hours to solve my problem alone when other people know the solution especially the dev team.

      Regards, H

      posted in Help
      Q
      quasar_beginner
    • RE: Q-Tab-Panel not swipeable when....

      [SOLVED]Q-Tab-Panel not swipeable when…

      posted in Help
      Q
      quasar_beginner
    • RE: Q-Tab-Panel not swipeable when....

      No response … hmmmm… I changed my intention and have done a q-tab-panel for each component and it works… swipeable again!

      Thx for your support 🙂

      posted in Help
      Q
      quasar_beginner
    • RE: QCalendar Workweek (Month-View)....

      hmmmm… I thought that thousands of users using this Qcal tool to get feedback or ideas how I can solve my problem but it seems that I’m the only one who using it!

      After spending hours to read all the docus and api’s, I have seen that a new scopedslot “workweek” is implemented. I’ll try to get my problem solved with it. I hope it works and thanks for your help in the Quasar world.

      Regards, H

      posted in [v1] App Extensions
      Q
      quasar_beginner
    • QCalendar Workweek (Month-View)....

      Hi,
      I’m using Qcalendar 1.5.3 and try to get an event clicking on the workweek-number. My intention is, to automatically switch to the week-view.

      With Version 1.5.5 I saw that new events :columns are implemented but as I understood it right, only for the week-agenda-view…

      Is there any workaround to get the click from the workweek-number? Any Idea?

      Thanks in advance
      Regards H

      posted in [v1] App Extensions
      Q
      quasar_beginner
    • Q-Tab-Panel not swipeable when....

      using dynamic components and dynamic tab name…
      2c1a890e-0ac8-47d1-bb79-0d58c2d98b25-image.png
      9dde4775-2efe-4aa5-88f8-b4b5cd3f602f-image.png
      Thanks in advance for your help
      Regards

      posted in Help
      Q
      quasar_beginner
    • RE: q-table in conjunction with mysql in quasar framework

      Hi Scott, thx for your reply,

      Here are some code lines:

      // Calendar date selection
      <q-chip clickable color…>
      <q-popup-proxy…>
      <q-date v-model=“selectedDate”…>
      <div class=row…>
      <q-btn label=“ok” color… @click=getProjMonth(selectedDate)
      </div>
      </q-date>
      </q-popup-proxy>
      </q-chip>
      // Project table
      <div class="…">
      <q-table
      :grid="$q.screen.xs"
      :hide-header="$q.screen.xs"
      :data=“tabledata”
      :columns=“columns”
      :row-key=“uid”
      no-data-label=“no projects found”
      …

      export default {
      data () {
      return {
      …
      tabledata: [],
      selectedDate: ‘’,
      monthstart: ‘’,
      monthend: ‘’,
      …
      }
      }
      mounted () {
      this.selectedDate = new Date()
      this.getProjMonth(this.selectedDate)
      }
      methods: {
      getProjMonth (selday) {
      let fmDate = date.formatDate(selday, ‘YYYY-MM-DD’)
      this.monthstart = date.startOfDate(fmDate, ‘month’)
      this.monthend = date.endOfDate(fmDate, ‘month’)
      this.monthstart = date.formatDate(this.monthstart, ‘YYYY-MM-DD’)
      this.monthend = date.formatDate(this.monthend, ‘YYYY-MM-DD’)
      this.getProjData(this.monthstart, this.monthend)
      }
      getProjData (monthstart, monthend) {
      return this.$axios.get(’/api/projects.php’ , {
      params: {
      func: ‘getProjMonth’,
      start: monthstart,
      end: monthend
      }
      })
      .then((response) => {
      this.tabledata = response.data
      })
      .catch…
      },

      as I mentioned earlier, the this.tabledata array isn’t empty when I load the response.data to tabledata (axios-call) but the table will show only the "no-data-label-text

      Thanks for looking deeper into my problem.

      Bavarian regards, Henry

      posted in Help
      Q
      quasar_beginner
    • q-table in conjunction with mysql in quasar framework

      Hi,
      I’m new here and it’s my first post because i’m a quasar beginner.

      I defined a table to show projects of a month. I’m calling my DB-rountine at “mounted” based on the current date. The table shows the projects of the month based on the current date (i.e. april). everything ok - the db-lines are shown.

      I have added a qchip with calendar icon and qdate that the user can select another month for project reviewing. If I select March, the db-routine will be called and all db entries retrieved from the routine.

      My array is named tabledate which I fill up with “this.tabledate = response.data” (axios-call). The tabledate-array has 4 entries but the qtable will not be refreshed with the March-Data! Hmmmm…

      Any idea what is wrong in my process to see month-specific data?

      Best regards from Germany
      Henry

      posted in Help
      Q
      quasar_beginner