"report" section
The "autocompleteSearchDelay" property has been introduced to avoid the server getting overloaded with calls to fetch user or group suggestions.
To control the auto complete search delay for user reference fields in the report filters as per the user load, add the following node to the Application Configuration:
"report": {
"autocompleteSearchDelay" : 500
}
The following table provides the description of the "autocompleteSearchDelay" property.
Property
Default Value
Description
"autocompleteSearchDelay"
500
* 
The default value is also the minimum value, that is, the value of the "autocompleteSearchDelay" property cannot be less than 500 milliseconds.
There is no maximum value for this property.
The set value is the time period in milliseconds after which the auto complete ajax call is fired to fetch user suggestions if the user has typed more than 2 characters.
Example:
When the value of the "autocompleteSearchDelay" is set to 3000, the ajax call is fired after 3 seconds if the user has typed more than 2 characters.
"report": {
"autocompleteSearchDelay" : 3000
}
Was this helpful?