<br><font size=2 face="sans-serif">Hello all!</font>
<br>
<br><font size=2 face="sans-serif">I've got a problem with the cms-taglib-element
<cms:ifexistsall ... >. (OpenCMS 6.0.4 on Tomcat 5.5)</font>
<br>
<br><font size=2 face="sans-serif">I am developing a template that displays
xml-contents. The corresponding editor has area that can be expanded ("plus"-sign).
</font>
<br><font size=2 face="sans-serif">Only if a certain area (in the following
example "Column") is expanded - i.e. the "+"-button
has been clicked - the according elements should be displayed by the template.
</font>
<br>
<br><font size=2 face="sans-serif">Well I constructed the following code
and thought it should work: </font>
<br>
<br><font size=2 face="sans-serif">
<cms:contentcheck ifexistsall="Column[1],Column[2],Column[3]"></font>
<br><font size=2 face="sans-serif">
<p>All 3 columns
expanded.</p></font>
<br><font size=2 face="sans-serif"> </cms:contentcheck></font>
<br>
<br><font size=2 face="sans-serif">Actually it does <b>not </b>work. Also
if Column[3] is minimized - i.e. the "+"-sign still visible -
the text within the <p>-Tags is displayed. </font>
<br><font size=2 face="sans-serif">Does the ifexistsall-attribute
connect the values via OR-statement? </font>
<br>
<br><font size=2 face="sans-serif">However I implemented the following
work-around that works well:</font>
<br>
<br><font size=2 face="sans-serif">
<cms:contentcheck ifexists="Column[1]">
</font>
<br><font size=2 face="sans-serif">
<cms:contentcheck
ifexists="Column[2]">
</font>
<br><font size=2 face="sans-serif">
<cms:contentcheck ifexists="Column[3]">
</font>
<br><font size=2 face="sans-serif">
<p>All
3 columns expanded.</p></font>
<br><font size=2 face="sans-serif">
</cms:contentcheck></font>
<br><font size=2 face="sans-serif">
</cms:contentcheck></font>
<br><font size=2 face="sans-serif">
</cms:contentcheck></font>
<br>
<br>
<br><font size=2 face="sans-serif">Can anyone tell me why this problem
occurs or what I did wrong? Has anyone made similar experiences? </font>
<br>
<br><font size=2 face="sans-serif">Thanks in advance and regards,</font>
<br><font size=2 face="sans-serif">Pascal</font>