Jsx working with object
Accordinf what ive read, If you need to pass complex parameters such as objects from your panel’s JS to the host app's JSX, JSON.stringify() them first (no need to JSON.parse() them in the JSX – they arrive as objects).
in in jsx I have the following object.
myData
this was passed from js to jsx via evalscript(myData).
i can view it and see there’s an object with the data.
My problem is I need to run a few things on this object in example: Object.keys(myData).length should return the length but instead it does nothing.
Am I missing something?
