November Happy Hour will be moved to Thursday December 5th.
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:
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?
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?