quasar
quasar copied to clipboard
QTable: Add support for disabling selection checkbox with 'disable' property
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.
Putting this in there, solves this feature request pretty gracefully to me: https://github.com/quasarframework/quasar/discussions/16250