HtmlWidget

(Difference between revisions)
Jump to: navigation, search
(Extending edit options for HtmlWidget)
(added config options for XML Content)
Line 20: Line 20:
  
 
Of course you can modify the configuration attribute to display only the extra elements you would like to make available to the content creators.
 
Of course you can modify the configuration attribute to display only the extra elements you would like to make available to the content creators.
 +
 +
== Extending edit options for HtmlWidget since OpenCms 7.5.1 ==
 +
 +
Extract from a mailing list post:
 +
 +
...
 +
 +
from 7.5.1 on, we enhanced the HTML widget configuration options. There is a new option to hide buttons, e.g. hidebuttons:bold;italic;underline
 +
 +
It is also now possible to set global widget configurations in the opencms-vfs.xml file by adding a "configuration" attribute to the "widget" elements. As long as there is no individual confiduration set in a XSD, the global configuration is then used.
 +
 +
Have a closer look at the JavaDoc of
 +
org.opencms.widgets.CmsHtmlWidgetOption to learn about the configuration details.
 +
 +
...
 +
 +
[http://old.nabble.com/OpenCms-7.5.1%3A-How-to-remove-buttons-from-the-FCKeditor-in-XMLContents-td27222851.html#a27238167| Link to complete message]
 +
 +
  
 
== Adding a style box with your custom styles ==
 
== Adding a style box with your custom styles ==

Revision as of 12:09, 20 January 2010

See also the article on FCKEditor.

Contents

Description

Shows a WYSIWYG text area with formatting options to create formatted texts. This is the default widget for the OpenCmsHtml datatype.

Extending edit options for HtmlWidget

It is possible to extend the HtmlWidget that is used by the XMLContent forms so that the different OpenCms galleries can be accessed for creating nice html. This is quite easily done by opening up the XML Schema file for the XML Content type you wish to extend, and add the following code:

<layouts>
  <layout element="Text" widget="HtmlWidget" configuration="source,link,anchor,formatselect,image,table,imagegallery,downloadgallery,linkgallery,htmlgallery,tablegallery,height:400px" />
</layouts>

inside the following tags:

<xsd:annotation>
  <xsd:appinfo>
    ... Add the layouts element here ...
  </xsd:appinfo>
</xsd:annotation>

Of course you can modify the configuration attribute to display only the extra elements you would like to make available to the content creators.

Extending edit options for HtmlWidget since OpenCms 7.5.1

Extract from a mailing list post:

...

from 7.5.1 on, we enhanced the HTML widget configuration options. There is a new option to hide buttons, e.g. hidebuttons:bold;italic;underline

It is also now possible to set global widget configurations in the opencms-vfs.xml file by adding a "configuration" attribute to the "widget" elements. As long as there is no individual confiduration set in a XSD, the global configuration is then used.

Have a closer look at the JavaDoc of org.opencms.widgets.CmsHtmlWidgetOption to learn about the configuration details.

...

Link to complete message


Adding a style box with your custom styles

It is possible to add a style box with your custom styles to the FCKEditors toolbar. First, set up your stylesheet and the configuration xml file in the resources directory of your module. You find a description how to do this on page FCKEditor. Then reference the stylesheet and the configuration xml in the configuration attribute of the layout element

<layouts>
  <layout element="Text" widget="HtmlWidget" configuration="css:/system/modules/MODULE_NAME/resources/css/my.css,stylesxml:/system/modules/MODULE_NAME/resources/css/my.css_style.xml, ... OTHER OPTIONS" />
</layouts>

External References

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox