Skip to main content

RequestSettings.responseWaitingTime Property

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

Declaration

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

Property Value

Type Description
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.

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