Back to Devexpress

RequestSettings.maxCommandCount Property

aspnet-js-requestsettings-1735c45d.md

latest1.3 KB
Original Source

RequestSettings.maxCommandCount Property

Specifies the maximum number of commands that the control can send in one request.

Declaration

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

Property Value

TypeDescription
number

The number of commands. The default value is 250.

|

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 maxCommandCount property allows you to specify the maximum number of commands that the control can send in one request. To access this synchronization setting, use the requestSettings property.

js
richEdit.requestSettings.maxCommandCount = 100;

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