ASPxClientRichEdit.requestSettings Property
Allows you to access request settings.
Declaration
requestSettings: RequestSettings
Property Value
| Type | Description |
|---|---|
| RequestSettings | An object that contains request settings. |
Remarks
When ASPxRichEdit loads a document, it sends a document model to the client and then synchronizes the model’s client-side changes with the server.
Use the requestSettings property to change the default synchronization settings.
richEdit.requestSettings.maxCommandCount = 100;
richEdit.requestSettings.responseWaitingTime = 10000;
richEdit.requestSettings.pendingPeriod = 3000;
For more information on the client-server document synchronization in ASPxRichEdit, refer to the following topic: ASPxRichEdit - Client-Server Document Synchronization.
See Also