Sorry, we don't support your browser.  Install a modern browser

self.UI.SetValue does not update displayed value for InputFields#2151

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)
2 months ago