Table data isn't included in form.data

I'm not sure if this is intentional but the data within a data table isn't included in the form.data property.

I have a table component with checkbox rows turn on, however, the checked rows are not included in the higher level form components data property.

Is this by design?

The Table component for Retool Apps

Hi @serdar, I'm not sure if I'm understanding your question. By checked rows do you mean selected rows?

Or do we have the table nested under a Form component and we're trying to access it from the Form's properties?

1 Like

Hi Paulo,
The table component is within a form component, and by checked rows I did mean the selected rows. I was under the impression that as it's a child component the selected rows would be available to me when I inspect form.data?

The data property contains a key-value list of all input fields, the table isn't considered an input field even if the columns are editable. We should instead reference tableName.selectedRows. :slightly_smiling_face:

1 Like