You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
When i try to change the rows Property inside a Unified JS script, i get this error (TraceViewer):
session: 0024, trace: PROPERTY_SET Invoke failed (property='Screen->Items->Properties->rows', id=4, error=0x80000000)
Hi,
I'm still working on the documentation but, anywaway, in order to send data to the CWC you need to convert your array into a string with "JSON.stringify()", the "Array" data type is not supported inside CWC's
So, to display the data you will need to : Screen.Items("SelettoreRicette").Properties.rows = JSON.stringify([["a"], ["b"], ["c"], ["d"]]);
Hi,
When i try to change the rows Property inside a Unified JS script, i get this error (TraceViewer):
session: 0024, trace: PROPERTY_SET Invoke failed (property='Screen->Items->Properties->rows', id=4, error=0x80000000)
Here is my code:
Screen.Items("SelettoreRicette").Properties.rows = [["a"], ["b"], ["c"], ["d"]];
Thanks
GiorgioT.
The text was updated successfully, but these errors were encountered: