Dropdown selection

Select specific dropdown selection based on what host opens it.
This is the script I have and what error I am getting.


In Vision, window parameters are delivered to same-named custom properties of the window's root container. Case-sensitive. You either do not have the custom property, or you have a typo of some kind. You cannot deliver anything directly to a component in that window. Your dropdown component will need a property binding to a root container custom property.

1 Like

I added the custom property, but it is still not writing in the correct data.

Did you add a property binding from your dropdown component's selectedValue property to the window's root container .Dropdown custom property? (Or whatever you named it.)

Show your work.

It bound to a tag now that reads info from a dataset.


Get rid of the binding on Selected Label. Make sure the binding for selected string value points at the root container custom property that is your parameter.

Do not bind the root container custom property to anything. It is supposed to only get a value from the .openWindow() parameters.

That was it, thanks for your help