Cacher un Element "Element.hide"
Bonjour,
Je travaille sur un projet j2ee(struts2+sprin2+JPA+prototype)
je veux cacher un element de ma jsp et pour cela j'utilise Element.hide en prototype ,mais une fois que je clique sur le lien il me retourne l'erreur suivante :
Code:
There is no Action mapped for namespace / and action name showmenu('divContent'). - [unknown location]
voici ma jsp :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <div id=divContent class= divContent>
<fieldset>
<legend><A href="showmenu('divContent')" style="cursor: pointer;">[+] Advanced search</A></legend>
<table cellpadding="2" cellspacing="1" style="display:none;">
<tr>
<td>Region:</td>
<td><input type="text" id="region"></td>
<td>Sub-Region:</td>
<td><input type="text" id="subregion"></td>
<td>Division:</td>
<td><input type="text" id="division"></td>
</tr>
</table>
</fieldset>
</div> |
et ma fonction en prototype :
Code:
1 2 3 4
| function showmenu(divContent) {
if (Element.hide('divContent')) Element.show('divContent');
else Element.hide('divContent');
} |
est ce que je dois introduire une nouvelle action struts pour cela ?
quelq'un peut m'aider ,ma fonction est-elle correcte ?
Merci