Testing @ThisValue in a combobox…
In HTML Attributes for a FIELDNAME, I have tried this:
“fieldvalue='” + FIELDNAME +"’ " +
“thisvalue='” + @ThisValue +"’ "
Save design, refresh webpage
fieldvalue has the value of FIELDNAME in it.
thisvalue shows ‘’.
I thought HTML Attributes of a field would take @ThisValue. Am i doing something wrong?
Edit: I Think I see the problem. Its a combobox but I’m filling the list of possible values in via javascript. I would still expect @ThisValue to return the same as FIELDNAME. Even if the value isnt in a list until javascript fills the field in. Thoughts?
Edit#2: Allow values not in this list appears to have resolved @ThisValue. Sorry.