this is the the code I used with the help of James Hunt of Inductive automation Tech Support to solve my issue.
if event.propertyName == ‘data’:
NextProductsTbl = event.source.parent.getComponent(‘pwrTblNextProducts’)
system.db.refresh(NextProductsTbl, ‘data’)
ActiveProductTbl = event.source.parent.getComponent('pwrTblActiveProduct')
system.db.refresh(ActiveProductTbl, 'data')
Attached is a screen shot as well.
Thanks for the great support!
I am trying to reference another component on a window from the onCellEdited event of a power table. I cannot seem to find the correct syntax as their is no ‘event’ available in the extension function of the power table component. Has anybody been able to do this?