philip,
thank you, for the explanation.
the link had some nice documentation, and i was
able to access the functions that i needed directly from
prototype, as you suggested.
Code:
onclick="Element.toggle('${formId}:${name}Select');"
2 caveats were that i had to copy the prototype.js
into my webapp and import it into my page.
otherwise, i wasn't sure how to import it.
Code:
<script src="resources/js/prototype.js" language="javascript" />
also, the $() didn't work as i would have expected. perhaps,
icefaces, or the facet compiler does something?
but i would think that the following would work?
Code:
onclick="$('${formId}:${name}Select')).toggle();"
it seemed to evaluate correctly, but i got the following error.
$("feedbackQueryForm:conditionSelect").toggle is not a function
but calling Element.toggle works fine for me.
-scott