Hit List Data
Hit count
The yuuvis® RAD client loads 50 hits in lists by default and 50 different hits each time the user scrolls down.
Depending on the data structure, it may be useful to enter a lower value in order to reduce the amount of data that needs to be transferred or enter a higher one in order to reduce the frequent reloading of data.
Change this value as follows:
- Open the main.json file in the <service-manager-data>\webresource\public\client\assets_default\config\ directory.
- Go to the following entry:
- Modify the value of the "limit" parameter.
- Save the file.
"search": {
"searchMode": "idxs",
"limit": 50
},
Changes in the main.json configuration file can be overwritten by updates. If you create a <service-manager-data>\webresource\resources\client\assets\_default\config\ directory and save a project-specific extend.json configuration file with the corresponding parameters there, changes are retained. For configurations, we recommend using only the extend.json instead of the main.json.
CSV for exporting hit lists
The separator for columns in exported CSV files can be entered in the search-prod.yml configuration file located in the \config\ directory of yuuvis® RAD service-manager. Parameter: csv.delimiter: ';'. Default: semicolon.
CSV files are always output with UTF-8 encoding. Without BOM is the default. The csv.writeBOM: true parameter is used to output the file with BOM. For a correct display of umlauts and special characters, the output with a BOM should be set in Excel, for example.
Organization reference fields and object reference fields can be resolved in order to export hit lists. In this case, names are output instead of IDs.
This requires the following entry in the extend.json file:
"search": {
"resolveReferencesCSV": true,
"resolveReferencesCSVThreshold": 5
},
The resolutions can cause the export to take significantly more time. The resolveReferencesCSVThreshold parameter sets the number of resolutions at which point a message will be shown to the user. The user can then cancel the export. Default: 10.000