How to disable the 7.5 Rich Text editor

TPAE 7.5 has introduced a nice Rich Text editor control for editing and formatting long descriptions. This applies to both Maximo and SmartCloud Control Desk starting from version 7.5.
This feature is very cool in some cases but may cause some troubles. I personally do not like the effects of pasting text into such RTF text boxes.

To disable the formatting features of these controls you can just add the following attributes to the richtexteditor element in the application XML definition: plugins="[]" extra_plugins="[]"

Here are the steps.
  1. Open the Application Designer.
  2. Open the application you want to modify.
  3. Export the XML definition.
  4. Open the XML with a text editor.
  5. For each richtexteditor element add the plugins and extra_plugins attributes (look at the example below).
  6. Save the XML file.
  7. Update the application definition importing the XML in the Application Designer.

Example

Before
<richtexteditor dataattribute="description_longdescription" id="main_grid3a_col1_2"/>

After
<richtexteditor dataattribute="description_longdescription" id="main_grid3a_col1_2" plugins="[]" extra_plugins="[]"/>


References


Labels: ,