Hi All,
I am working on an Ignition Perspective Table component.
My table data is coming from a Dataset Tag:
[default]IGBT_ROBOT_CELL_PROD/SAP_RES_Dataset
The table contains a column:
"Prod. Order No"
I also have another tag:
[default]IGBT_ROBOT_CELL_PROD/OrderNumber
Requirement:
Whenever the value of OrderNumber tag matches any row's "Prod. Order No", I want the entire row to be highlighted dynamically.
I tried:
-
Script Transform on props.data
-
props.rows.style.classes expression binding
-
Row style bindings
But since the table data originates from a Dataset Tag and Perspective internally converts rows into objects containing value/style properties, I am facing issues with row styling and expression syntax.
What is the recommended Perspective approach to dynamically highlight a row based on matching tag value with a dataset column value?
Thanks.