Back to Devexpress

RequestSettings.pendingPeriod Property

aspnet-js-requestsettings.md

latest1.3 KB
Original Source

RequestSettings.pendingPeriod Property

Specifies the pending period before the control sends a request to the server.

Declaration

ts
get pendingPeriod(): number
set pendingPeriod(value: number)

Property Value

TypeDescription
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.

js
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

RequestSettings Class

RequestSettings Members