01 August 2025

1. Core

1.1. Autocomplete

Added new property "multipleMatchOn" to support match on multiple values in BusinessObject Autocomplete handler.

This can be configure like below:

"autocomplete": {

	"handler" : {
		"name" : "businessobject",
		"contains": "true",
		"typePattern": "Person",
		"searchType" : "contains",
		"multipleMatchOn" : "${attribute[First Name], attribute[Last Name],name}",
		"displayMacro": "${attribute[First Name]} ${attribute[Last Name]}",
		"caseSensitive" : false,
		"value" : "id"
	}
}

Refer BusinessObject chapter for more details.

2. Structure Browser

2.1. Loader while exporting

UI have improved while exporting file/flies. New setting tvc.structurebrowser.export.showLoader controls whether loading indicators appear during export operations in the Structure Browser, with a default value of true to enable the export loading indicator. The loading message text is configurable through the property tvc.structurebrowser.export.loading.message in TVCStringResources, allowing for localization and custom messaging during export processes.

image
Figure 1. Loader While Exporting

Refer Exporting Data for more details.

3. Other

In addition, a lot of small improvements and bug fixes have been made as well.