Please see the below jsp_ref data from endeca. So my question, is it possible to get /retrieve the value of dispName from the record, using a recordFilter, during run-time ??
How can i get the propertynames value, during rendering the product display page. Note : I cannot go with endeca manipulator approach.
dispName = record.getProperty("sku.displayName")
StockStatus = record.getProperty("product.stockStatuses");
sku.baseUrl: atgrep:/ProductCatalog_production/sku/017229136779
sku.creationDate: 1485194500638
sku.displayName: LG M95 BT HEADSET BL
sku.endDate: 32506394714894
sku.margin: 0.000000
product.stockStatuses: 1000:Out of Stock
product.stockStatuses: 100411:Out of Stock
product.stockStatuses: 100412:Out of Stock
if(null != xxxxPage && !((String) xxxxPage ).isEmpty()){
PropertyConstraint propContraint = new PropertyConstraint(EndecaConstants.ITEM_SALE_FLAG,EndecaConstants.CONST_1);
return propContraint.toString();
}
PropertyConstraint propContraint = new PropertyConstraint(EndecaConstants.ITEM_SALE_FLAG,EndecaConstants.CONST_1);
return propContraint.toString();
You can use endeca properties for filtering if you have enabled those as record filters by adding the same in NavigationStateBuilder component. Record.getattributes should give you a map of indexed properties/dimensions and corresponding values..