Line editor table
The Editable Table is a custom LWC component designed for screen flows, enabling efficient editing and addition of records. By adding this component to a flow and configuring the fields to be edited, users can view multiple records of a specified object in a table format, directly edit field values in each row, or add new records. Since inline editing is supported within the flow without navigating to a separate screen, it enhances the user experience and allows repetitive data entry tasks to be completed quickly and intuitively.


🔸 Overview of the Line Editor Table


Object
Set the object for the records you want to edit or add. The table will be generated based on the selected object.
✔️
List Object
If you specify a record collection variable based on the selected object, the records in that collection will be displayed as initial values in the table.
✔️
List Field
Users can select which fields to make editable. If you want a specific field to be displayed for reference only, you can click the lock icon to set it as Read Only.
For Number or Currency type fields, you can enable summary values such as Sum or Average, allowing for more intuitive data analysis.
✔️
Show Add/Delete Buttons
You can configure whether to display buttons that allow users to directly add or delete records in the table.
If the buttons are disabled, users will not be able to add or delete records from the record list.
Manually assign variables
The list of edited records and the list of deleted records are returned as output values. These lists can be manually assigned to Flow variables and used for subsequent actions, such as saving or deleting records.
🔸 Steps to Line Editor Table

🔻 Add and Configure the Row Editable Table
Create two record collection variables for the object you want to edit. (Allow both input and output)
Add the Line Editor Table to the screen flow.
Select the object to be edited.
Choose the record collection variable to be used as the initial value.
Select the fields to be edited and configure their options.
In the Advanced tab, enable Manually assign variables, and assign the returned collections (Deleted Collection and Updated Collection) to the appropriate record collection variables.
Save the screen flow.
Last updated
Was this helpful?