The dropdown in the object’s XML is in the active=false state.
At this time,
self.UI.setAttributes(“DropdownID”, {active = “true”, value = 1})
Using this code will not turn on active.
self.UI.setAttributes(“DropdownID”, {value = 1, active = “true”})
This code works.