Customize Search Filter for List Widget type

Hi Folks, I am customizing the default search filter of Nuxeo. I have created my own field called Keywords which is a List Widget I have reflected the same field (Keyword) in search filter page but couldn't able to search based on keywords entered. Please find the attached for clarifications. I am able to search other text widget fields with ease but couldn't able to search List Widget types.

0 votes

1 answers

1859 views

ANSWER



I got a solution for the same. we can search that document with specific keywords using nxql search mechanism of Nuxeo. We can query such filed with simple queries like

 SELECT * FROM Document WHERE cms:Keywords="eee"

We can convert this querying as an API call and filter the documents.

0 votes