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. twistedcat
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 5
    • Best 0
    • Groups 0

    twistedcat

    @twistedcat

    0
    Reputation
    110
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    twistedcat Follow

    Latest posts made by twistedcat

    • RE: Selection column in table as last column

      hi @metalsadman , I don’t see any “after” slot in the Table API ? As for the use of body-cell I’m not sure I would use it to moce the selection column from first to last ?

      My current table looks like this: (treat all the ms-table as q-table in the tags)

          <ms-table
            :data="sources"
            :columns="columns"
            row-key="id"
            @row-click="onRowClicked"
            :pagination.sync="pagination"
            :loading="loading"
            @request="onTableRequest"
            binary-state-sort
            :visible-columns="visibleColumns"
            :selected.sync="selectedSources"
            selection="multiple"
          >
            <template v-slot:body-cell-isImmo="props">
              <ms-table-bool :props="props" />
            </template>
            <template v-slot:body-cell-isEnabled="props">
              <ms-table-bool circle-style size="sm" :props="props" />
            </template>
            <q-td slot="body-cell-actions" slot-scope="props" :props="props">
              <ms-table-btn icon="fas fa-trash-alt" class="q-mr-md" />
            </q-td>
          </ms-table>
      
      posted in Help
      T
      twistedcat
    • Selection column in table as last column

      I’m trying to have my multiple selection column in my table as the last column of my table. Is there a simple way to do that without rewritting the whole body + headers of the table ?

      Did not find any option for that in the doc, and the only solution I see is to use the “body” slot, which would force me to rewrite all the other cells also.

      posted in Help
      T
      twistedcat
    • RE: Q-uploader : how to disable the upload button ?

      So for now I ended up with two method, dummyUpload() which I declare as upload-factory when creating my uploader and uploadFile() which I call when I want. This last method fetchs the files and upload them using a custom method.

      Not very satisfying.

      posted in Help
      T
      twistedcat
    • Q-uploader : how to disable the upload button ?

      I want user to be able to select their file but NOT upload them using the uploader button. Is it possible to hide it or disable it ?

      I tried readonly , which appears to do nothing, and disabled which disables the whole uploader.
      I also tried to redefined an upload-factory that does nothing, but of course when I actually want to upload the file with upload(), my dummy upload-factory is called and nothing happens.

      Any lead ?

      posted in Help
      T
      twistedcat
    • Small toogle bar and label text color

      Hello everybody !

      Some i’m pretty much a rookie at quasar, and I have two question to which I can’t find the answer in the doc !
      First, here is a very small screenshot :
      Screenshot
      Then , my questions :
      First : Why are my toggle so small ? (they work well, but they are hella small compared to the doc)
      Second : How can I change my field label text color ? It’s grey, i’d like it black and i can’t find a helper class or a parameter for that, is there any ?

      posted in Help
      T
      twistedcat