Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tags
    3. datatable
    Log in to post
    • C

      Shadows's color
      Framework • datatable • • codethirsty

      3
      0
      Votes
      3
      Posts
      24
      Views

      C

      @beets thanks beets it works at last

    • J

      "Will-change memory consumption is too high" warning on Firefox
      Help • bug datatable firefox memory optimization • • jyagmin

      1
      1
      Votes
      1
      Posts
      288
      Views

      No one has replied

    • J

      Drag and Drop Data Table Column Ordering
      Help • custom datatable draganddrop • • johnorford

      3
      0
      Votes
      3
      Posts
      684
      Views

      J

      OK, thanks for this, good to know the right track to go on!

    • J

      Data Table Multiple Column Sort
      Framework • custom datatable sort • • johnorford

      4
      0
      Votes
      4
      Posts
      899
      Views

      M

      Vuetify currently has this. I’m surprised Quasar doesn’t support it. I had it working on vuetify with an external API hitting the DB and refreshing the table contents. In vuetify, the sort object contains and array of objects consisting of column names and asc or desc. Worked really well.

    • R

      Datatable, how to select a row using @rowclick handler
      Help • datatable rowclick select • • rafinha

      2
      0
      Votes
      2
      Posts
      747
      Views

      R

      Linking an answer so this question isn’t orphaned: https://forum.quasar-framework.org/topic/3626/qtable-select-row-when-clicking-row

    • maximilianfixl

      Sort datatable by number
      Help • datatable desc sort • • maximilianfixl

      5
      0
      Votes
      5
      Posts
      1696
      Views

      maximilianfixl

      That’s what I tryed as well. But it has no effect. I go ahead! Will let you know, if I figured it out.

    • M

      DataTable - compiling data from more JSONs, default view
      Help • datatable • • michalskop

      2
      0
      Votes
      2
      Posts
      866
      Views

      rstoenescu

      All these will be possible in QDataTable revamp of future v0.15 (currently in the works).

    • maximilianfixl

      How to use $t('message.hello') from vue-i18n as title in q-data-tabe?
      Help • column datatable title vue-i18n • • maximilianfixl

      9
      1
      Votes
      9
      Posts
      3437
      Views

      K

      Sad. Currently @kenium 's trick doesn’t work for me. It fails on error: “TypeError: Cannot read property ‘t’ of undefined”.

      Here is the complete code of component:
      <template>
      <q-table
      :title = “$t(‘default.register’)”
      :data = “tableData”
      :columns = “columns”
      row-key = “startingNumber”
      />
      </template>

      <script>
      export default {
      data: () => ({
      columns: [{
      name: ‘startingNumber’,
      field: ‘startingNumber’,
      label: this.$i18n.t(‘startingNumber’),
      }],
      tableData: [{
      startingNumber: 1,

      }],

      }),
      };
      </script>

      <style>
      </style>