Hi, I have a text field ID 1179 and I need to put in inside a text that writing in an html field. Not a post html but the html field in inside the form. I tried [1179] but that didn't work. Any thoughts on how to do this? Thank you
One way you could do it, depending on your complete end-game is to put input elements in the HTML field. I will use [] instead of the greater-than/less-than because this forum strips HTML tags.
Example text, text text text $[input id="myDollarFied" type="text"/].
Create a hidden field(s) in the form to mirror the value(s) entered in the field and give each field a unique ID. Use jQuery to take the entered values from the input elements and write them to the hidden fields so that they'll be saved when the form is saved.
You could have the form post to a view that does that for you but yeah, within the form itself, not without some custom code.
Please login or Register to submit your answer
The simple answer is "no, you cannot do that". What is your goal or use case?