I want to create a read only textbox (I dinamically load the value inside it).
In your opinion, what is the best way for doing this? I see some ways:
1) Custom element, with HTML code like this
2) Header element for displaying value + Hidden element to store in the form
Thank you
In your opinion, what is the best way for doing this? I see some ways:
1) Custom element, with HTML code like this
<input name="fieldname" id="fieldname" type="text" readonly="readonly" value="<?php echo $myvalue;?>" />
2) Header element for displaying value + Hidden element to store in the form
Thank you