Jump to: navigation, search

Difference between revisions of "HowTo:Make a Document ready for Redlining"


Line 1: Line 1:
 
The redlining feature creates a copy of the document and opens it for editing with any installed 3rd party application. To enable redlining for certain document object follow
 
The redlining feature creates a copy of the document and opens it for editing with any installed 3rd party application. To enable redlining for certain document object follow
  
'''Prepare a Document MetaClass for Redlining'''
+
'''Prepare a Filedocument MetaClass for Redlining'''
# Set the [[SYSCLS_REDLINEDFILE]] classification on a [[DOCUMENT|Document]] [[MetaClass]] using the {{CD}} control (the MetaClass must derive from [[FILEDOCUMENT]])
+
# Set the [[SYSCLS_REDLINEDFILE]] classification on a [[MetaClass]] for [[FILEDOCUMENT|file documents]] using the {{CD}} control (the MetaClass must derive from [[FILEDOCUMENT]])
 
# Implement the '''FILETYPE''' property, by adding an existing or after creating a new [[MetaProperty]] of type [[MetaProperty#Text|Text]]
 
# Implement the '''FILETYPE''' property, by adding an existing or after creating a new [[MetaProperty]] of type [[MetaProperty#Text|Text]]
  

Revision as of 09:34, 25 March 2014

The redlining feature creates a copy of the document and opens it for editing with any installed 3rd party application. To enable redlining for certain document object follow

Prepare a Filedocument MetaClass for Redlining

  1. Set the SYSCLS REDLINEDFILE classification on a MetaClass for file documents using the CD control (the MetaClass must derive from FILEDOCUMENT)
  2. Implement the FILETYPE property, by adding an existing or after creating a new MetaProperty of type Text

'

  1. Navigate to the MetaClass SYSCLS EDITABLEDOCUMENT in the Class Browser
    Property editable
  2. Open a RelationEditor for the created Document class, put the SYSCLS_EDITABLEDOCUMENT via dragging and dropping in the Relation Editor and navigate to the Classification
    Property editable
  3. Now all Instances of the created MetaClass can be set either editable or not by checking "EDIT_FILE_ALLOWED".
    UI Document editable 03.png
  4. To make the Document available, see the instructions on creating and editing Views.

See also