-
<cfparam name="Attributes.FieldName" type="string">
-
<cfparam name="Attributes.Size" type="numeric">
-
<cfparam name="Attributes.MaxLength" type="numeric">
-
<cfparam name="Attributes.Label" type="string" default="#Attributes.FieldName#">
-
<cfassociate basetag="CF_INTELLIGENTFORM">
-
<cfset ParentData = GetBaseTagData("CF_INTELLIGENTFORM")>
-
<!--- <cfdump var="#ParentData#" label="ParentData as seen by #Attributes.FieldName#"> --->
-
<cfoutput>
-
<tr>
-
<td>#Attributes.Label# </td>
-
<td>
-
<input
-
type="text"
-
name="#Attributes.FieldName#"
-
size="#Attributes.Size#"
-
maxlength="#Attributes.Maxlength#"
-
style="#ParentData.Attributes.InputStyle#">
-
</td>
-
</tr>
-
</cfoutput>