Pass query and "field" to termlist widget MKWS-284
authorJason Skomorowski <jason@indexdata.com>
Thu, 9 Oct 2014 19:02:28 +0000 (15:02 -0400)
committerJason Skomorowski <jason@indexdata.com>
Thu, 9 Oct 2014 19:02:28 +0000 (15:02 -0400)
src/mkws-widget-termlists.js

index 43737c1..4052251 100644 (file)
@@ -52,6 +52,7 @@ mkws.registerWidgetType('Facet', function() {
       linkdata += 'onclick="' + action + ';return false;"';
       terms.push({
         term: data[i].name,
+        field: data[i].id,
         count: data[i].freq,
         linkdata: linkdata
       }); 
@@ -72,6 +73,7 @@ mkws.registerWidgetType('Facet', function() {
     that.node.html(template({
       name: name,
       caption: caption,
+      query: that.config.query,
       terms: terms
     }));
   });