In the QTable Column definition, allow the format function access the whole row
export default{
columns: [ // array of Objects
// column Object definition
{
// (optional) you can format the data with a function
format: val => `${val}%`
}
]
}
export default{
columns: [ // array of Objects
// column Object definition
{
// (optional) you can format the data with a function
format: (val, row) => `${val || row.other}%`
}
]
}
Will be available in beta.14
Most helpful comment
Will be available in beta.14