Toggle Button on Table

Hi
I have a toggle switch on a table cell but when I toggle it the Selection Data does not change. I tested another cell which contains a String and has also be set to editable but it goes back to the original state. Should the Selection Data update to reflect the change as per the documentation which states that it’s bidirectional?
Thanks

You haven’t provided enough information to be certain, but it sounds like you have a query binding that is polling. When you edit anything in a table, you are responsible for sending the new cell value to the origin (database, typically) so that it’ll show up in the next poll. In other words, you have to write a script for the onCellEdited event that runs a SQL update statement.

(Or I’m wrong because you have unique situation that you haven’t described…)

1 Like