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 )
121 if( len( attributes.basePath) and right( attributes.basePath, 1 ) is not "/" )
122 attributes.basePath = attributes.basePath & "/";
125 sURL = attributes.basePath & "editor/fckeditor.html?InstanceName=" & attributes.instanceName;
128 if( len( attributes.toolbarSet ) )
129 sURL = sURL & "&amp;Toolbar=" & attributes.toolbarSet;
163 for( key in attributes.config )
171 fieldValue = attributes.config[key];
181 …<input type="hidden" id="#attributes.instanceName#" name="#attributes.instanceName#" value="#HTMLE…
182 …<input type="hidden" id="#attributes.instanceName#___Config" value="#sConfig#" style="display:none…
183 …<iframe id="#attributes.instanceName#___Frame" src="#sURL#" width="#attributes.width#" height="#at…
195 if( isNumeric( attributes.width ) )
196 attributes.width = attributes.width & "px";
197 if( isNumeric( attributes.height ) )
198 attributes.height = attributes.height & "px";
204 …a name="#attributes.instanceName#" rows="4" cols="40" style="WIDTH: #attributes.width#; HEIGHT: #a…