Skip to content

Instantly share code, notes, and snippets.

@kerrishotts
Created October 13, 2021 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kerrishotts/1c6f8ca699b0db39d3095f198e1d50a5 to your computer and use it in GitHub Desktop.
Save kerrishotts/1c6f8ca699b0db39d3095f198e1d50a5 to your computer and use it in GitHub Desktop.
UXP setting sp-textfield value issue
const numberField = document.querySelector("sp-textfield[type=number]");
numberField.value = 10; /* won't work; field will be blank */
numberField.value = "10"; /* will work. */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment