I have a requirement for a data table to have a set list of rows where users can’t Add or delete existing rows. Additionally the table has three columns and the first column should be read only. I am created the list item item using power automate and creating the rows on creation. Any thoughts as how to achive this?
// get a column by its name
const unitPriceColumn = dt.columns.find(c => c.field === 'UnitPrice');
// make column read-only
unitPriceColumn.editable = () => false;