Hello!
It is possible to do On Cell Click in Ignition Perspective?
I want this to show a popup with data for that specific cell.
If not would it be possbible do so with onRowClick combining row info and column info?
Cheers,
Alejandro
Hello!
It is possible to do On Cell Click in Ignition Perspective?
I want this to show a popup with data for that specific cell.
If not would it be possbible do so with onRowClick combining row info and column info?
Cheers,
Alejandro
You will need to do the latter, something like this on the onRowClick event:
def runAction(self, event):
	col = self.props.selection.selectedColumn
	row = self.props.selection.selectedRow
	system.perspective.openPopup("IaaFU7dfgK-",'test/popup', params = {'key':self.props.data[row][col]})