Hi,
I am trying to custom columns list in search results in Webtop 6.5 SP3. I modify search component like this:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version="1.0">
<scope type="custom_type1">
<component modifies="search:webcomponent/config/library/search/searchex/search60_component.xml">
<insert path="columns_list">
<column>
<attribute>attribute1</attribute>
<label>lable1</label>
<visible>true</visible>
</column>
<column>
<attribute>attribute2</attribute>
<label>lable2</label>
<visible>true</visible>
</column>
</insert>
</component>
</scope>
</config>
but i obtain the same columns that are defined in a standar webtop. What is wrong in my custom code?
Thanks for your help.