Lines Matching refs:attributes

40 <cfparam name="attributes.instanceName" type="string">
41 <cfparam name="attributes.width" type="string" default="100%">
42 <cfparam name="attributes.height" type="string" default="200">
43 <cfparam name="attributes.toolbarSet" type="string" default="Default">
44 <cfparam name="attributes.value" type="string" default="">
45 <cfparam name="attributes.basePath" type="string" default="/fckeditor/">
46 <cfparam name="attributes.checkBrowser" type="boolean" default="true">
47 <cfparam name="attributes.config" type="struct" default="#structNew()#">
54 if( attributes.checkBrowser )
101 if( len( attributes.basePath) and right( attributes.basePath, 1 ) is not "/" )
102 attributes.basePath = attributes.basePath & "/";
105 sURL = attributes.basePath & "editor/fckeditor.html?InstanceName=" & attributes.instanceName;
108 if( len( attributes.toolbarSet ) )
109 sURL = sURL & "&amp;Toolbar=" & attributes.toolbarSet;
129 for( key in attributes.config )
137 fieldValue = attributes.config[key];
147 …<input type="hidden" id="#attributes.instanceName#" name="#attributes.instanceName#" value="#HTMLE…
148 …<input type="hidden" id="#attributes.instanceName#___Config" value="#sConfig#" style="display:none…
149 …<iframe id="#attributes.instanceName#___Frame" src="#sURL#" width="#attributes.width#" height="#at…
161 if( isNumeric( attributes.width ) )
162 attributes.width = attributes.width & "px";
163 if( isNumeric( attributes.height ) )
164 attributes.height = attributes.height & "px";
170 …a name="#attributes.instanceName#" rows="4" cols="40" style="WIDTH: #attributes.width#; HEIGHT: #a…