Hi,
I have a search template in my Content Navigator application. This search template has 5 fields. These 5 fields are assigned in Search Criteria and Search Results. I need to set different labels for these fields because symbolic name is not user readable. In Search Criteria I did this already using below code in plug-in.
aspect.before(ecm.widget.search.SearchForm.prototype, "_createSearchField", function (criterion, tablename, isChildCriterion, operatorHidden) {
if(criterion.name==='ABC'){
criterion.name='Customer Number';
}
);
But this is only working for Search Criteria. I need the same customisation for Search Results. By the way I need to do this based on search template name.
Thank you in advance.
#IBMContentNavigator(ICN)#Support#SupportMigration