Hello,
want to use double click extension function to navigate to a window using the parameter to pass through along with one other parameter to from root window but not able to pass the parameter available from which navigation needs to happen.
I tried the code in the power table double click extension function:
Def Ondoubleclick(self, rowindex, colIndex, ColName,Value,event):#not working
parma1= value
param2= event.source.parent.Station_ID #from template properties)
system.na.swapto(‘Windows2’,{‘SerialNum’:param1, ‘StnID’: param2})
Def Ondoubleclick(self, rowindex, colIndex, ColName,Value,event):#working fine
parma1= value
system.na.swapto(‘Windows2’,{‘SerialNum’:param1})
Can anyone help to why that’s not working…?
Thanks in advance