Hi All,
I am customizing the advance search component in webtop 6.5.In this i am showing all my custom attribute (eg)
<
dmfxs:searchattribute name='docdesc' attribute='doc_desc' andorvisible="true" removable="false" ></
dmfxs:searchattribute>
It is showing the AND and OR dropdown list.When i am choosing the OR operator in the dropdown list it is not at all reflecting in the query and giving no result and query is contructed wrong at the back end because it taking all the attributes like this :
WHERE ((matter_name = 'test1') AND (doc_title LIKE '2009%' ESCAPE '\')) AND (a_is_hidden = FALSE) ENABLE(NOFTDQL).
I wanted query to come as below :
WHERE ((matter_name = 'test1' ) OR (doc_title LIKE '2009%' ESCAPE '\')) AND (a_is_hidden = FALSE) ENABLE(NOFTDQL).
Instead of this i tried to use the searchattributegroup tag.Please tell me how i want to use this tag with all my custom attributes are in one group.Please share some sample tag code
Thanks in advance
Subin Kumar.V