-
Version 2.9.8 (and 2.7.33) I have a form where I want each field to save to db as soon as it's updated. So in "On change" of each field I add action "Save Row". When I preview and modify value (let's say from "A" to "B") and tab out., I see the confirmation msg "Row saved" but the db doesn't get updated (stays as "A"). At this time in the field visible on the form I still see "B". I try again and change value from "B" to "C" and tab out again. I see the "Row Saved" again, but this time the whole form flashes (reloads) and the value in the box changes back to "B". The database also gets updated to "B". So I get to save only every second change and only to the value of the previous change. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello @lukuser, You might want to use the special binding |
Beta Was this translation helpful? Give feedback.
No problem. You may use the Add Column option in Save Row action and add both the row id and the column to be updated. The current row id can be retrieved from the Repeater by
{{ Repeater.TableName._id }}
. The current value of the field from the Form can retrieved by{{ Field Value }}
.It is like so: