Merge pull request #13823 from Budibase/BUDI-8281/readonly-columns-in-grid
Readonly columns in grid
This commit is contained in:
commit
e011a60dbb
|
@ -33,7 +33,8 @@
|
||||||
column.schema.autocolumn ||
|
column.schema.autocolumn ||
|
||||||
column.schema.disabled ||
|
column.schema.disabled ||
|
||||||
column.schema.type === "formula" ||
|
column.schema.type === "formula" ||
|
||||||
(!$config.canEditRows && !row._isNewRow)
|
(!$config.canEditRows && !row._isNewRow) ||
|
||||||
|
column.schema.readonly
|
||||||
|
|
||||||
// Register this cell API if the row is focused
|
// Register this cell API if the row is focused
|
||||||
$: {
|
$: {
|
||||||
|
|
Loading…
Reference in New Issue