Back to Devexpress

RichEditCommands.forceSyncWithServer Property

aspnet-js-richeditcommands.md

latest1.5 KB
Original Source

RichEditCommands.forceSyncWithServer Property

Gets a command to force synchronizing the server document model with the client model and execute a callback function if it is necessary.

Declaration

ts
get forceSyncWithServer(): ForceSyncWithServerCommand

Property Value

TypeDescription
ForceSyncWithServerCommand

An object that provides methods that execute the command and check its state.

|

Remarks

Call the execute(callback) method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.

Use this command for sending the latest changes made in a document to the server to avoid losing these changes when a server-side operation (for example, saving) is performed. Note that all changes made in the document after sending client model cannot be handled in the callback.

Usage example:

javascript
richEdit.commands.forceSyncWithServer.execute();
richEdit.commands.forceSyncWithServer.execute(function() {});

Refer to the following section for more information: Client Commands.

See Also

RichEditCommands Class

RichEditCommands Members