Display number of results

If you wish to display the number of results matching the current sellector selection in the header (or footer) of the result area, simply add the following few lines of javascript to your web page:

resultAreaTemplate:{
   headerHeight: 20,// in pixel
   headerContent: 'matching products found: <productsMatching/>'
},
/* possible Tags to be used within footer and header content:
   <productsMatching/>
   <page/>
   <pagesAvailable/>
   <lastUpdatedDDMMYYYY/>
   <lastUpdateTime/>
   <lastUpdatedYYYYMMDD/>
*/

Notice:

1. Please adapt the values after the ':' to your needs.
2. 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>

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