Set column values doesn’t work

We tried using the “set column values” action in the onSubmit event of a creation form, but it didn’t change any columns, we tried putting a constant and it didn’t work either.
Any suggestions on how to fix it?

That is not the recommended way to do it, the reason for that is the set column may fire before the row is actually created.

If you’re setting a value from the previous screen, you can use a special value component to do that. It’s guaranteed to work.

If you’re setting a constant, use a text entry/number entry, set a default value, and set the visibility of that component to something that is never true (so the entry can not be changed).

1 Like