Hello RT world,<br><br>Running RT 3.6.4 currently on Suse 9.3 x86 with MySQL 4.1.x and/or Oracle 9i available.&nbsp; My apologies if you see this twice, as I posted this in both Users and Devel groups, but I thought both applied in this case.
<br><br>We would like to use a SINGLE Custom Field in a somewhat unusual manner, if possible.&nbsp; We would like to modify the &quot;ShowCustomFields&quot; and &quot;EditCustomFieldText&quot; html Elements to allow both editing and display of a very special custom field.&nbsp; For this custom field, we would like to present a specifically formatted repeatable text entry form (including drop down selections, text entry, etc.) along with incorporating some JavaScript field validation all as a part of the single custom field.&nbsp; We have some JavaScript code already that will allow us to add and remove the repeatable form elements.&nbsp; 
<br><br>The question at hand is, are we able to somehow include a custom JavaScript+HTML form as a single custom field?&nbsp; My thought is, we could store the individual field values as comma or pipe delimited text within the custom field and write the display routines around parsing that information.&nbsp; How do we put together the changes to the EditCustomFieldText Elements such that it will take input from either a pop-up form or from an embedded HTML form displayed in the place of the single custom field?&nbsp; Perhaps I&#39;m over thinking this, but there almost has to be a way to do this.
<br><br>Pseudo-code as follows:<br><br>% if ( $CustomField-&gt;Name eq &#39;Special_Field&#39; ) {<br>% &nbsp;&nbsp; &nbsp;### Display special repeatable HTML form with JavaScript validation here<br>% } else {<br>% &nbsp;&nbsp; &nbsp;### Original textarea input field here
<br>% }<br><br>In short, this all needs to be incorporated into ONE CustomField if at all possible, as there may be 99 some entries in this section (CustomField), as a result we would not want to create 99 x10 fields - as individual custom fields to accomplish this.
<br><br>Has anyone done anything similar to this?&nbsp; Can anybody offer some pointers, ideas, or thoughts?&nbsp; Any suggestions would be greatly appreciated.<br><br>Thanks!<br><br>Todd