quasar icon indicating copy to clipboard operation
quasar copied to clipboard

QTable: Add support for disabling selection checkbox with 'disable' property

Open FrittenKeeZ opened this issue 5 years ago • 1 comments

Just like you can do with QOptionGroup, it would be nice to be able to control what rows you can select by specifying disable on an object.

options: [
  {
    label: 'Option 1',
    value: 'op1'
  },
  {
    label: 'Option 2',
    value: 'op2',
    disable: false
  },
  {
    label: 'Option 3',
    value: 'op3',
    disable: true
  },
  {
    label: 'Option 4',
    value: 'op4',
    disable: true
  }
]

Right now I wouldn't know how to achieve this, if it's even possible.

FrittenKeeZ avatar May 14 '20 16:05 FrittenKeeZ

Putting this in there, solves this feature request pretty gracefully to me: https://github.com/quasarframework/quasar/discussions/16250

cohlar avatar Jan 03 '24 16:01 cohlar