Hello, I have customized the search by adding in attributes in the jsp page so that the user does not have to select them from the properties dropdownlist. I have made the andorvisible = true. It shows up, however it does not query the ORs. It always queries with AND even though I have set it to OR. Below is a sample of my jsp page. Please let me know how I can get search to do the OR queries. Thank you.
<tr><td colspan='2' class='spacer' height='12'> </td></tr>
<tr>
<td align=right valign=top nowrap> <dmf:label label='Primary Title:' cssclass="fieldlabel"/></td>
<td align=left valign=top nowrap><dmfxs:searchattribute name='primary_title' attribute='primary_title' andorvisible="false" removable="false">
</dmfxs:searchattribute>
</td>
</tr>
<tr><td colspan='2' class='spacer' height='12'> </td></tr>
<tr>
<td align=right valign=top nowrap> <dmf:label label='Secondary Title:' cssclass="fieldlabel"/></td>
<td align=left valign=top nowrap><dmfxs:searchattribute name='secondary_title' attribute='secondary_title' andorvisible="true" removable="false">
</dmfxs:searchattribute>
</td>
</tr>
<tr><td colspan='2' class='spacer' height='12'> </td></tr>
<tr>
<td align=right valign=top nowrap> <dmf:label label='Tertiary Title:' cssclass="fieldlabel"/></td>
<td align=left valign=top nowrap><dmfxs:searchattribute name='tertiary_title' attribute='tertiary_title' andorvisible="true" removable="false">
</dmfxs:searchattribute>
</td>
</tr>