columns.0.editable : false
columns.1.editable : false
columns.2.editable : false
columns.3.editable : false
columns.4.editable : true
On table, right-click, Configure Events.
onEditCellCommit add a script.
In script refresh the binding on the other table.
self.getSibling("myOtherTable").refreshBinding("props.data")
The binding on the other table will need to know what has been selected on the checkbox table.
1 Like
myOtherTable is in another Page, so I will use
self.getSibling("../OtherPage/myOtherTable").refreshBinding("props.data")
That won't work. Try using the Browse Properties button and you will see that other views / pages are not listed.
You can use system.perspective.sendMessage | Ignition User Manual but that only works if the other view is open.
A better way would be to save the select list to a session.custom
property. The other view would use that property as part of its table binding.
1 Like
The other view will be open, the checkbox filter is on a popup window
the checkbox filter is on a popup window.
You need to say that when you ask a question. We can't guess.
1 Like
How can I choose multiple checkboxes?, now I can only choose one
Hi guys,
I need to select multiple rows in a table and send the values to a label in another view.
I tried to use the checkbox column to select them, but I can only check one at a time. The selection mode is set to multiple interval.
What am I missing?
[image]
[image]
Thanks!
this solution isn´t work for me