@txtextcontrol/tx-ng-ds-document-editor
TypeScript icon, indicating that this package has built-in type declarations

3.3.0 • Public • Published

TX Text Control Document Services HTML5 Document Editor (Angular version)

This library offers a HTML5 based rich text editor for TX Text Control DS Server. Give your users an MS Word compatible document editor to create powerful reporting templates anywhere - in any HTML5-based browser including Google Chrome, Firefox, Safari and Internet Explorer.

Installation

ng add @txtextcontrol/tx-ng-ds-document-editor

Usage

Your component.html could look like this, for example (the only mandatory attributes are width, height and serviceURL):

<tx-ds-document-editor
   width="1024px"
   height="1024px"
   serviceURL="https://your.server.com/documentservices"
   oauthClientID="dsserver.u5NQQHkgjmCRAOeChUVc19zNFJ9aivKz"
   oauthClientSecret="tPGgkutg8oYuSHPbfuRfE5DMf9arUCEg"
   [userNames]="['user1', 'user2']">
</tx-ds-document-editor>

Possible attributes

  • width (string) - The width of the component (e. g. "1024px").
  • height (string) - The height of the component (e. g. "1024px").
  • serviceURL (string) - The server which is hosting your installation of Text Control DS Server.
  • oauthClientID (string) - The OAuth client ID.
  • oauthClientSecret (string) - The OAuth client secret.
  • documentData (string) - Base64 encoded document data.
  • documentFileFormat (string) - The file format of the document data. Possible values are 'HTML', 'RTF', 'TXT', 'TX', 'DOC', 'PDF', 'DOCX' and 'XLSX'.
  • jsonData (string) - The data source for the reporting tab.
  • editMode (string) - Sets whether the document's text is read-only, can be selected or is editable. Possible values are 'Edit', 'ReadAndSelect', 'ReadOnly' and 'UsePassword'.
  • contextMenusEnabled (boolean) - Sets whether a right click opens a context menu or not.
  • formattingPrinter (string) - The name of a printer the text dimensions and capabilities of which are used to format the document.
  • culture (string) - The culture (e. g. 'de-DE'). Affects date and time string formats, for example.
  • uiCulture (string) - The user interface culture (e. g. 'en-US'). Affects the string resource language.
  • userNames (string[]) - An array of names specifying users who have access to editable regions. When a document is set to read-only all editable regions that are related to these users can be edited.
  • reconnectTimeout (number) - Time in seconds before stopping reconnection attempts after a connection loss.
  • accessToken (string) - An (OAuth-) access token acquired through a self implemented workflow. When this attribute is present, oauthClientID and oauthClientSecret are ignored.
  • customQueryParams (Object.<string, any>) - Specifies user-definable query parameters which are added to the query string of each HTTP request.

Events

Because the script containing the main TXTextControl object is loaded in a deferred manner, the component provides a global event ("dsDocumentEditorLoaded") which is fired as soon as the object is available. The event is dispatched on the document object. You can subscribe to it in your component.ts as follows:

@HostListener('document:dsDocumentEditorLoaded')
onDsDocumentEditorLoaded() {
   console.log('The TXTextControl object exists from now on.');
   TXTextControl.addEventListener("ribbonTabsLoaded", () => console.log('The ribbon tabs have been loaded completely.'));
}

Environment Support

Readme

Keywords

none

Package Sidebar

Install

npm i @txtextcontrol/tx-ng-ds-document-editor

Weekly Downloads

53

Version

3.3.0

License

none

Unpacked Size

75.1 kB

Total Files

18

Last publish

Collaborators

  • thomerow
  • bjoerntx
  • schedo