cancel
Showing results for 
Search instead for 
Did you mean: 

Backoffice 1905 not showing indexproperties in adaptive search perspective.

Hello All,

we are migrating from SAP Commerce 1808 to 1905, as part of that we are migrating commerce search to adaptive search. while creating boost rules in backoffice index properties are not getting populated in widget, getting below error on screen

error in log as below:

Rendering of editor failed. null

Is there anything wrong with data provider. As per config asIndexPropertyDataProvider is used for populating this field however it is not fetching any data.

View Entire Topic

Amrita,

its is resolved by adding our custom types in index properties in solrfacetsearch-spring.xml

example:

<alias name="defaultIndexPropertyTypeMapping" alias="indexPropertyTypeMapping" /> <util:map id="defaultIndexPropertyTypeMapping"> <entry key="boolean" value="java.lang.Boolean" /> <entry key="string" value="java.lang.String" /> <entry key="text" value="java.lang.String" /> <entry key="sortabletext" value="java.lang.String" /> <entry key="int" value="java.lang.Integer" /> <entry key="float" value="java.lang.Float" /> <entry key="double" value="java.lang.Double" /> <entry key="date" value="java.util.Date" /> <entry key="long" value="java.lang.Long" /> </util:map>