Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
I have a FileSummary that has a XForms "select", which renders as a list of checkboxes. I'm using it to "tag" files. It looks something like this:
<xforms:select ref="MyTagField"><xforms:item><xforms:value>MyTag1</...></...></...>In the summary dictionary, the XForms select is stored in a field the value of which is all checked items separated by commas.
Now, let's say I want to perform a UnifiedSearch for files where two of the checkboxes are NOT checked. How do I do this?
unifiedSearchQuery.MatchSummary.Add("MyTagField", "???");
Is this even possible to do from the search page in the file manager GUI?