Hi,
Could someone tell me how to specify the toobarset, when using the cfmodule tag? It keeps defaulting to my default toolbarset. Here is my code:
<cfmodule
template="../fckeditor/fckeditor.cfm"
basePath="/fckeditor/"
instanceName="body"
value="#body#"
width="80%"
height="200"
>
Thanks in advance
Could someone tell me how to specify the toobarset, when using the cfmodule tag? It keeps defaulting to my default toolbarset. Here is my code:
<cfmodule
template="../fckeditor/fckeditor.cfm"
basePath="/fckeditor/"
instanceName="body"
value="#body#"
width="80%"
height="200"
>
Thanks in advance
RE: Specify toolbar set using coldfusion
So your code would be:
<cfmodule
template="../fckeditor/fckeditor.cfm"
basePath="/fckeditor/"
instanceName="body"
value="#body#"
width="80%"
height="200"
toolbarSet="YourToolBarSet"
>