Secured data
The secured lines can be activated with the config hasSecuredRows: true. When activated, all lines containing the property secured: true will be hidden from the VirtualTable.
Column config
To display the locker icon, add withLockIcon: true to a column config.
You can decide to display the column content by adding showLockInfo: true to a column config.
Unlock rows
To unlock a row, you can either switch it's secured property to false or use the unlockedRows config property.
{
hasSecuredRows: true,
unlockedRows: [3], // [{ id: 3 }] is also accepted
columns: [...]
}