We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Syncfusion Feedback

Collaborative editing

The Word Processor component allows multiple users to work on the same document simultaneously. This can be done in real time so that collaborators can see the changes as they are made. Collaborative editing can be a great way to improve efficiency, as it allows team members to work together on a document without having to wait for others to finish their changes.

Simultaneous editing

The Word Processor component allows multiple users to connect and edit the same document simultaneously using the SignalR connection.

initializeSignalR = (): void => {
    // SignalR connection
    this.connection = new HubConnectionBuilder().withUrl(this.serviceUrl + 'documenteditorhub', {
      skipNegotiation: true,
      transport: HttpTransportType.WebSockets
    }).withAutomaticReconnect().build();
    //Event handler for signalR connection
    this.connection.on('dataReceived', this.onDataRecived.bind(this));

    this.connection.onclose(async () => {
      if (this.connection && this.connection.state === HubConnectionState.Disconnected) {
        alert('Connection lost. Please relod the browser to continue.');
      }
    });
  }




Struggling to decide on the right product?

Our comprehensive competitor comparison of Angular components will guide you to the perfect choice.

tick-mark 85+ UI components
tick-mark 900+ interactive Angular demos
tick-mark 9.2M+ downloads
competitive-banner-FT-image

Other supported frameworks

Word Processor is also available in Blazor, React, Vue, and JavaScript frameworks. Check out the different Word Processor platforms from the links below,

Supported browsers

The Angular Word Processor works well with all modern web browsers such as Chrome, Firefox, Microsoft Edge, Safari, and Opera.

Supported browsers

85+ ANGULAR UI COMPONENTS

Scroll up icon