Binding tags to a table component

In FactoryPMI, you have to build the a dataset in scripting in order to display tag values in the table. Basically, on a script somewhere on the window you can do the following:header = ["Col 1", "Col 2"] data = [] data.append([system.tag.getTagValue("TagPath1"), "Another Value"]) data.append(....) # for every row event.source.parent.getComponent("Table").data = fpmi.dataset.toDataSet(header, data)Take a look at this thread that talks about this (in Ignition):

viewtopic.php?f=72&t=6553

Hope this helps.