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. Tags
    3. datatable
    Log in to post
    • C

      Q-input hidding the clock
      Framework • datatable • • codethirsty

      3
      0
      Votes
      3
      Posts
      606
      Views

      C

      @dobbel said in Q-input hidding the clock:

      input[type=“time”]::-webkit-calendar-picker-indicator {
      background: none;
      }

      thanks @dobbel . I couldn’t reach that class. Now thanks to you i got the bull by the horns. With

      background:none;

      the place where the clock was is still used. So I used

      input[type="time"]::-webkit-calendar-picker-indicator { display: none; }

      and the space is displayed no more. Thanks again!

    • C

      Shadows's color
      Framework • datatable • • codethirsty

      3
      0
      Votes
      3
      Posts
      530
      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
      722
      Views

      No one has replied

    • J

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

      3
      0
      Votes
      3
      Posts
      1260
      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
      1776
      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
      885
      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
      2196
      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
      959
      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
      4201
      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>