2
I Use This!
Very Low Activity

News

Analyzed about 10 hours ago. based on code collected 1 day ago.
Posted over 8 years ago by EdW
Hi Gianna, If you are not familiar with Plone development the easiest way to debug your results on a faceted search is to use the "Debugger" widget. Otherwise you have to pdb directlly into the code ( https://github.com/collective/eea.facetednavigation). Best regards, Alec On 5/10/2018 4:03 PM,
Posted over 8 years ago by Gianna Fallani
Good morning I have a problem with a faceted navigation widget. It can't find a new object if I create it from Plone site, perhaps because it uses a cache. I would like to know something more about widget programming, to debug this strange behaviour. Are there any manuals or tutorial on line on
Posted almost 10 years ago by Alin Voinea
Plese reply at: http://community.plone.org/t/eea-facetednavigation-and-filtering/2992 @espenmn wrote: I have eea.facetednavigation running on Plone 5. I can filter on indexes, unless they have 'special characters'. If they have, no items are found. How can I troubleshoot this (can it be an index
Posted almost 10 years ago by Alin Voinea
Plese reply at: http://community.plone.org/t/bin-test-with-no-parameters/2927 @alberto wrote: I just installed Plone 5.0.6 using the Vagrant installer. After the installation, the first thing I do is to ssh the box, go to the Plone buildout dir and run bin/test The output shows 2 failures and 2
Posted about 10 years ago by Vincent Fretin
The build seems unstable because of my commit in master, apparently a jslint error or warning? When I click on the js file, I get nothing http://ci.eionet.europa.eu/job/eea.facetednavigation-www/248/violations/file/eea/facetednavigation/widgets/autocomplete/view.js/ I have no idea what to do here.
Posted about 10 years ago by Alin Voinea
Plese reply at: http://community.plone.org/t/how-to-create-a-subset-of-tags-for-eea-navigation-in-plone-4/2590 @3dogMcNeill wrote: with EEA.Nav you can let users filter content by tag, however it automatically pulls a list of all tags used on the site. How can I create a subset of tags, in other
Posted about 10 years ago by Alin Voinea
AFAIK, no! You should try to use the "Text field" instead of the TAL expression facet like this: 1. Configure faceted-navigation 2. Export to XML 3. Edit XML and change "text field" id from c4 to SearchableText or whatever 4. Import faceted configuration from your XML > 2. The counts aren't
Posted about 10 years ago by Chris Milway
On the text field – Legend! Thank you that works. On the count – it only seems to be an issue (since doing the above anyway) on the first loading of the facets. If I select an additional option triggering the facets to refresh, the count is from then on correct. Chris On Mon, Sep 7, 2015 at
Posted about 10 years ago by Jean-Sébastien Mansart
Hello, I'm doing the same thing than Chris, but how do you change the viewlet to make it point to search#SearchableText= with the # in a form ? Thanks Le lundi 31 août 2015 14:00:09 UTC+2, Alin Voinea a écrit : > > Hi Chris, > > Sorry for the delay - you know, holidays :). > > Thus, your viewlet
Posted about 10 years ago by Chris Milway
I used a snippet of jQuery that works on form submit: $('form#searchGadget_form').submit(function(e) { e.preventDefault(); var field = $(this).find('#searchField') var url = $(this).attr('action') + '#SearchableText=' + field.val(); location = url;