I think it's close... but let me be more explicit:
I already have a dropdown menu with two choices: "A" and "B"
By default, "A" is selected. When I update the menu to "B", I then set a localStorage variable to "B" so I know it for the future. This all works just fine...
Then I move on to another screen and the new value of "B" is properly stored in the local storage.
Later on, I come back into the settings screen where I have this dropdown menu. Since my localStorage is set to "B", I want the menu to appear initialized to "B" and not to "A" (which was selected when I defined the menu).
When I do a setProperty on screen load for this (which should set "B" to be selected), it doesn't update the menu. Is a refresh required? If that's the case, when do it? I've defined a JS that does the refresh after the setProperty call in Tiggzi... but it's not updated.
Comments?