I'm stuck. I cannot figure out what I am doing wrong with the lucene nupicker product. running version 1.5.3.
I select lucene checkbox picker with the expectation is that on the backoffice there would be a textbox which would generate a list of matching content based on the index that you can check select.
presented with the following where I select the lucene index to use.
Save
on the backoffice however I get this... I can't select or query anything...
Any idea what I am doing wrong? Can someone explain the 'raw query'? I can't find any documentation on the main site here
my lucene index is setup with only one includeNodeType and when I query the index from backoffice it returns data fine.
Hi. The reason this wasn't working was that we did not include in the IndexAttributeFields the value of nodeTypeAlias. It makes sense immediately once we figured out that was the issue.
so for example if you are using your lucene picker with a custom indexer and that indexer is only storing a few different nodes..
example
and then in your raw Query of the picker you use +nodeTypeAlias:article
it won't work because the nodeAliasType is missing from the collection.
You need it to look like this:
Cannot get nupicker to work
I'm stuck. I cannot figure out what I am doing wrong with the lucene nupicker product. running version 1.5.3.
on the backoffice however I get this... I can't select or query anything...
Any idea what I am doing wrong? Can someone explain the 'raw query'? I can't find any documentation on the main site here
my lucene index is setup with only one includeNodeType and when I query the index from backoffice it returns data fine.
Hi Mac,
Perhaps this blogpost about examine can help you a step further.
https://umbraco.com/follow-us/blog-archive/2011/9/16/examining-examine/
Or perhaps this documentation about the examine https://our.umbraco.org/documentation/reference/searching/examine/
Hope this helps,
/Dennis
Hi. The reason this wasn't working was that we did not include in the IndexAttributeFields the value of nodeTypeAlias. It makes sense immediately once we figured out that was the issue. so for example if you are using your lucene picker with a custom indexer and that indexer is only storing a few different nodes.. example
and then in your raw Query of the picker you use +nodeTypeAlias:article it won't work because the nodeAliasType is missing from the collection. You need it to look like this:
Yup...obvious when you figure it out.. head scratcher until then.
is working on a reply...