Is there a way to show text before AND after text entry fields in a Matrix Table (Constant Sum type) | XM Community
Solved

Is there a way to show text before AND after text entry fields in a Matrix Table (Constant Sum type)

  • 28 June 2021
  • 2 replies
  • 43 views

Userlevel 7
Badge +30
  • Level 6 ●●●●●●
  • 1049 replies

I am collecting monetary data and trying to display a dollar sign before the field, and ".00" after the field.
image.png
Is there a way to do this entirely with javascript, or with the built-in Add Symbol feature for one side, and Javascript for the other side?

icon

Best answer by ahmedA 28 June 2021, 23:20

View original

2 replies

Userlevel 7
Badge +21

This will add it

before
:
document.querySelectorAll("tr input").forEach(item =>{
    item.insertAdjacentText("beforebegin","$ ")})

Userlevel 7
Badge +30

Thank you ahmedA ! And if I wanted to make the field 100px wide, what would I add? I've been using the code below previously, and it appears to work OK with your new code, but I'm a Javascript novice and don't know if that's unstable or there's a more efficient way to do this.
image.png

Leave a Reply