Setup row editable using Dynamic Columns

Summary

Working in a Cloud instance, the aim is to make an entire table row editable using Dynamic Column settings, but only per-column editability (true/false) is exposed rather than a row-level editable option.

AI Response

There isn't a single row-level 'editable' toggle, but you can achieve the same result because each column's Editable setting accepts a dynamic expression. Instead of a static true/false, write a boolean that references the row's own data (e.g. via the current row / item) so editability is evaluated per row. Apply this expression to every column you want conditionally editable to effectively make the whole row editable based on its values. Be aware of one known caveat: when editability is controlled dynamically, newly added rows may not become editable as expected.

Sources

:bookmark: New Table Component - dynamically set column editability based on other column data for a given row
Solved thread showing how to make a column's Editable setting a dynamic expression tied to a given row's data, which is exactly how to drive editability per row.
:bookmark: Cannot edit new table row columns when column editability is controlled dynamically
Recent solved thread documenting the known limitation where new rows aren't editable when column editability is set dynamically.

The Community Team is testing out a new automation designed to improve resource discovery. Let us know if it's helpful by leaving a :heart: or :+1:. Or by marking this post as the "Solution"! And let us know if you have any feedback here. :rocket:

1 Like