X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=e8cab105c6a4f9c6aa2e5cf54c49f4ef2565fde3;hb=8d1d4b22649401af52cfc1f1ba65d9627a149b15;hp=43737c1b961626990232ae6a6a0662af577d317a;hpb=6f7d5a4860ec055c40290325b7c1498cb64ad79c;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 43737c1..e8cab10 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,4 +1,4 @@ -mkws.registerWidgetType('Termlists', function() { +mkws.registerWidgetType('termlists', function() { // Initially hide the termlists; display when we get results var that = this; var team = this.team; @@ -15,7 +15,7 @@ mkws.registerWidgetType('Termlists', function() { }); -mkws.registerWidgetType('Facet', function() { +mkws.registerWidgetType('facet', function() { var facetConfig = { xtargets: [ "Sources", 16, false ], subject: [ "Subjects", 10, true ], @@ -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 }); @@ -61,17 +62,18 @@ mkws.registerWidgetType('Facet', function() { if (that.config.template) { template = team.loadTemplate(that.config.template); } else { - template = team.loadTemplate("Facet-" + caption); + template = team.loadTemplate("facet-" + name); if (template) { - that.log("Using Facet-" + caption + " template.") + that.log("Using facet-" + name + " template.") } else { - that.log("No " + caption + " specific template, using default.") + that.log("No " + name + " specific template, using default.") template = team.loadTemplate("Facet"); } } that.node.html(template({ name: name, caption: caption, + query: that.config.query, terms: terms })); });