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. select
    Log in to post
    • KunalChoudhary

      quasar table selectable columns
      Help • help q-table select table • • KunalChoudhary

      2
      0
      Votes
      2
      Posts
      157
      Views

      dobbel

      @kunalchoudhary

      Here’s a demo to create a checkbox in the header of a particular field. How you would be able to select columns instead of rows is another problem.

      https://codepen.io/ontwikkelfabriek/pen/WNoLdGw

    • I

      How can i get the actual value for select options? I am getting the options value as [object Object]
      Framework • options quasar v1.0.0 select • • iamtetea

      2
      0
      Votes
      2
      Posts
      208
      Views

      I

      Finally i realise where i made a mistake! in case anyone stuck in this error, change option:“label” to “category_name”

    • A

      Q-Select @new-value is not triggered
      Help • events select • • AdrianG

      2
      0
      Votes
      2
      Posts
      94
      Views

      A

      This is getting weird. Yesterday I had two different sets of code that I switched between using while testing. I could only get it working by using the local string array, but not using string array coming from props. Today (without changing any code, only switched between the two sets of code from yesterday) it’s now the opposite, where it only works using string array from props. This is what I was trying to do yesterday, so that’s great, but having no explanation isn’t great
      Between each test I did here, I always cleared cache manually, to make sure I was testing all changes

    • M

      (Multi) Select Cells in Table
      Help • cell multiselect select table • • MAtes

      2
      0
      Votes
      2
      Posts
      233
      Views

      Pratik Patel

      Please refer the following codepen I think it will help.

      https://codepen.io/anon/pen/gNrdyL?editors=1010

      https://stackoverflow.com/questions/56569707/how-do-i-identify-the-cell-selected-in-a-quasar-table

    • S

      Searching on select focus
      Help • issue quasar select • • silentcoast

      1
      0
      Votes
      1
      Posts
      557
      Views

      No one has replied

    • R

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

      2
      0
      Votes
      2
      Posts
      903
      Views

      R

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

    • K

      Can you style normal elements with Quasar?
      Help • css html select • • kosciak

      2
      0
      Votes
      2
      Posts
      1482
      Views

      rstoenescu

      Select documentation: http://quasar-framework.org/components/select.html
      You need a model and options. Options object looks like this (just an example):

      selectOptions: [ { label: 'Google', value: 'goog' }, { label: 'Facebook', value: 'fb' }, ... ]

      Use Vue computed properties if needed 😉