Bonjour à tous j'ai une configuration jsf2.1.1 + spring 3.05 + richfaces 4.0.0.Final
le probleme le richpopup panel n'arrive pas à se lancer quand je regarde la console d'erreur du navigateur il me metvoici le code de la page
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2 Uncaught ReferenceError: RichFaces is not defined Uncaught TypeError: Cannot call method 'addEventListener' of nullquelqu'un peut il bien m'aider svp
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j" xmlns:rich="http://richfaces.org/rich"> <h:form id="locals"> <f:view> <h:commandButton value="Call the popup"> <rich:componentControl target="popup" operation="show" /> </h:commandButton> <rich:popupPanel show="true" id="popup" modal="true" resizeable="true" onmaskclick="#{rich:component('locals:popup')}.hide()"> <f:facet name="header"> <h:outputText value="Simple popup panel" /> </f:facet> <f:facet name="controls"> <h:outputLink value="#" onclick="#{rich:component('locals:popup')}.hide(); return false;"> X </h:outputLink> </f:facet> <p>Additionally there you could check how to handle the clicks outside the panel.</p> <p>In this sample the click outside - closes the panel as well as clicking hide control in the header</p> </rich:popupPanel> </f:view> </h:form> </html>
Partager