html - icefaces menupopup strange problem -
i have piece of code:
<ice:panelgroup menupopup="menupopup1" onclick="firecontextmenu(this, event);"> <img src="/resources/images/external/bg-suppliers.gif"> </img> </ice:panelgroup>
it renders html output (as expected):
<div class="icepnlgrp" id="j_id62" onclick="firecontextmenu(this, event);"> <img src="/resources/images/external/bg-suppliers.gif"> </div>
if add menupopup attribute ice:panelgroup like:
<ice:panelgroup menupopup="menupopup1" onclick="firecontextmenu(this, event);"> <img src="/resources/images/external/bg-suppliers.gif"> </img> </ice:panelgroup>
it closes divs before img tag:
<div class="icepnlgrp" id="j_id62" onclick="firecontextmenu(this, event);"></div> <img src="/resources/images/external/bg-suppliers.gif">
which strange...
do guys have work-around? it's bug icefaces cannot find related on site...
thanks.
solution found.
working different templates had 2 ice:forms in final page , 2 body well, , panelgroup 1 form referenced menupopup other form gave above issue.
Comments
Post a Comment