j'une une page jsf qui contient 2 <h:form>
  • 1er <h:form>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
<h:form>
		<rich:tree switchType="client" value="#{library.data}" var="item"
			nodeFace="#{item.type}">
			...
 
		<h:commandButton value="hh" action="#{mBeanInfoFactory.hello}"/>
				...
		</rich:tree>
	</h:form>
 
le 2eme form contient aussi le meme commandbutton <h:commandButton value="hh" action="#{mBeanInfoFactory.hello}"/>
mon probleme est que le bouton du 1er form execute la methode hello du bean mBeanInfoFactory alors que le second bouton ne fait rien.
ou est le probleme?