I currently have a text entry field inside a listView component.
On the text entry field I have an event handler that's designed to insert a prototype of a dictionary into an existing variable when the user clicks the field (i.e. field is in focus).
For some reason the event handler's value field won't recognize a valid dictionary as an object but instead wants to treat the dictionary as a string. I have other event handlers that operate in the same way but are not inside a listView component and they work perfectly.
So, the way it's currently working is that clicking the text entry field sets up the prototype dictionary in a separate variable. Whatever is entered into the text entry field is then inserted into that object through a separate handler. I'm not trying to insert an object into the value of the text entry field itself, so I'm not sure why the handler for a text entry field would stop you from setting variables as non-text values. Perhaps a bug?