Add checkbox column in Ignition Perspective to filter other column

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

this solution isn´t work for me