I have a table and when I click on a row I want to set a text label to the selected value in the table. The onSelectionChange script is:
This returns event.data, which contains the data I want. What I get is a value with the field (column) name and the value as [{“Field”:“Value”}] as shown:
I could use some python string manipulation on event.data to strip it down to the value I want, but is there a way to access the value directly? event.data doesn’t appear to be a dataset that I could access as event.data [0][0] or event.data[0 0]. There is no value property on event.data.