Is used for the declaration of an Imagemap within a JSP-page.
Using an Imagemap, individual images can be selected with the
help of regular expressions. The Imagemap is saved in the HTTP-request
under the specified name.
Caution: The search for the suitable mapping takes place in the order or declaration - i.e. from top to bottom!
Many display classes of the framework work with Imagemaps.
Generates an Imagemap with 4 image-assignments and saves these
under the name im_product in the HTTP-request.
<%@ taglib uri="http://www.common-controls.com/cc/tags-util" prefix="util" %>
<util:imagemap name="im_product">
<util:imagemapping rule="group.open" src="images/imgBoxOpen.gif" width="16" height="16"/>
<util:imagemapping rule="group.closed" src="images/imgBoxClosed.gif" width="16" height="16"/>
<util:imagemapping rule="product" src="images/imgItem.gif" width="16" height="16"/>
<util:imagemapping rule="variant" src="images/imgItems.gif" width="16" height="16"/>
</util:imagemap>