Display price in results

If you want to display the product price in each product field within the result area, simply add the following few lines of javascript to your web page:

resultTileFooter:{
   height: 12, // in pixel
   content:"any HTML content e.g.: Price incl. VAT: </span>€<sellectorPrice/>"
},
/* possible Tags to be used within footer and header content:
   <sellectorPrice/>
*/

Notice:

1. Price values are only available if your sellector table contains a price column labeled with the column header 'price'.
2. Please adapt the values after the ':' to your needs.
3. The above code snippet must be placed inside the 'sellectorPresentation'-variable (there should only be one per page) inside a javascript-script-tag as shown below:

<script type="text/javascript">
   var sellectorPresentation = { // there can only be one 'sellectorPresentation' variable per page
      other code
      Place your code here
      other code
   }
</script>

4. In order to avoid problems when customizing the above code, please make sure that there is NO comma before any closing '}'-bracket.