In the documentations, it shows how you can send param value to your java script (js) file but it does not show how to send to python file within the same module. I tried playing around with generateResults but got nowhere. Unless I missed something, I am lost.
Examples 7 had something like this, but is limited to only 4 arguments:
def generateResults(self, host_app, client_app, sid, count=1000, offset=0, entity_name='results'):
I already included my param in the conf file:
[param:startsize]
required = False
default = 8
label = This parameter defines start scale size.
[param:endsize]
required = False
default = 70
label = This parameter defines end scale size.
What is the proper way to pull the parameter value into python?
... View more