As described. If you use self.UI.setValue(id, value)
on an InputField, it will update the value, but will not update what the element displays. To work around this, you need to set the “Text” attribute on the same element, like so:
self.UI.setValue(id, value)
self.UI.setAttribute(id, "Text", value)