One Form for multiple tables (Tabbed container)

Use the same Update Form for Different tables that has the same columns.

I have a Tabbed container with tables and form

Each Tab has a table:
Tabel10
Tabel11
Tabel12
note that I also use multiple selection on each table.

I have a From
image

Is there a way to use the same from for all the tabs?

The only different is the query filtering get my data from Mysql.

Hi there @Thore,

Not sure I completely understand what you're trying to achieve. However, youcan condition your data source based on your tabbed container key/index, e.g.

{{tabbedContainer1.currentViewKey === 1 ? table10.selectedRow : tabbedContainer1.currentViewKey === 2 ? table11.selectedRow : table12.selectedRow }}

1 Like

Hi

Thanks, this is just what i needed.

3 Likes