Bonjour,
J'essaye de faire un tooglePanel en suivant (presque) l'exemple du demo ici mais ça marche pas, il m'affiche cette erreur: javax.servlet.ServletException: Facet with name: hotel not found!
voici mon code:
Merci d'avance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 <rich:togglePanel stateOrder="hotel,photo" initialState="hotel" switchType="client"> <f:facet name="hotel"> <ui:include src="addHotel.xhtml"> <ui:param name="next" value="photo" /> </ui:include> </f:facet> <f:facet name="photo"> <ui:include src="photoUpload.xhtml"> <ui:param name="previous" value="hotel" /> </ui:include> </f:facet> </rich:togglePanel>
Partager