Hello,
For a widget I need to access all cells values of the selected row.
So I use grist.onRecord(function(record, mappings) {...});
But I figure now that depending on my grist.ready configuration, the record content is not the same.
If I use grist.ready({requiredAccess: 'full'});
, record contains all columns with cells values.
However, if I want to map a column and using grist.ready({columns:["Html"], requiredAccess: 'full'});
now the record contains only id and the column mapped to Html even if they are other columns. All columns are visible of course.
Is it the expected behavior?
If so, how can I get all values of the selected row when I map some columns ?
Thanks