Thanks Paul-Inge and Florian for the suggestions!<br><br><div class="gmail_quote">On 12 May 2011 13:14, Florian Hopf <span dir="ltr"><<a href="mailto:hopf@synyx.de" target="_blank">hopf@synyx.de</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
Am 12.05.2011 11:17, schrieb Yves Glodt:<br>
<div><div></div><div>> is it possible to create a search which will only search in the<br>
> description text of of a picture?<br>
><br>
> Background: On a site I would like to add some tags into the description<br>
> field of the pictures in a photoalbum.<br>
><br>
> Then I would like to create a search field wher people can search for<br>
> tags, and get the pictures which have the tag assigned.<br>
><br>
<br>
</div></div>This should be possible and even quite easy. CmsSearch provides a method<br>
to only search on certain fields and for a certain resource type. It<br>
should work like this:<br>
<br>
CmsSearch search = ...;<br>
search.addFieldQueryMust(CmsSearchField.FIELD_DESCRIPTION, searchQuery);<br>
search.setResourceType(CmsResourceTypeImage.getStaticTypeName());<br>
<br>
Then the result will only contain images that contain the searchQuery in<br>
the description.<br>
<br>
Regards<br>
Florian<br>
<br>
_______________________________________________<br>
This mail is sent to you from the opencms-dev mailing list<br>
To change your list options, or to unsubscribe from the list, please visit<br>
<a href="http://lists.opencms.org/mailman/listinfo/opencms-dev" target="_blank">http://lists.opencms.org/mailman/listinfo/opencms-dev</a><br>
</blockquote></div><br>