Back to Devexpress

RequestSettings.responseWaitingTime Property

aspnet-js-requestsettings-6a7319bd.md

latest1.3 KB
Original Source

RequestSettings.responseWaitingTime Property

Specifies the time that the control waits for a response before it sends a request again.

Declaration

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

Property Value

TypeDescription
number

The waiting time in milliseconds. The default value is 30000.

|

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 responseWaitingTime property allows you to specify the time that the control waits for a response before it sends a request again. To access this synchronization setting, use the requestSettings property.

js
richEdit.requestSettings.responseWaitingTime = 10000;

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