RequestSettings.pendingPeriod Property
Specifies the pending period before the control sends a request to the server.
Declaration
get pendingPeriod(): number
set pendingPeriod(value: number)
Property Value
Type | Description |
---|---|
number | The period in milliseconds. The default value is 5000. |
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.
The pendingPeriod
property allows you to specify the pending period before the control sends a request to the server. To access this synchronization setting, use the requestSettings property.
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