Edit a row with differents forms

Hi, i’m looking for a method to edit a row using several forms.

For exemple, in a detail view for the row “2” in which i can see the values of all the columns, i have 3 boutons

Bouton 1: send me to a form who show me and can only modify columns 2 and 3
Bouton 2: send me to a form who show me and can only modify columns 4 and 5
Bouton 2: send me to a form who show me and can only modify columns 6 and 7

the column 1 is the key of the row

thank you

0 5 428
5 REPLIES 5

You would need to create 3 different slices and then trigger the correct with a LINKTOFORM deep link action button.

Thanks for your help, i already tried that, but it will create a new row in the table and i need to modify the columns in the row i’m using the buttom

@Felix_Eduardo_Sanche
As @Aleksi proposed, you need to create:

  • 3 different slices which contains only the key column and the columns that you want to edit
  • 3 different UX views, one for each slice, set view type to Form and set position to ref
  • Create 3 action buttons with LINKTOROW deep link:
LINKTOROW([KeyColumnName],"YourSliceFormName")

Sorry… I just noticed that you are looking for an update, not add. Levent’s deep link will do that

Thanks a lot, this work perfectly

Top Labels in this Space