je traivaillé avec firefox et ma pages marchait parfaitement quand j'ai changé à IE aucun bouton ne marche plus!!!!!!!!!!!!! ;(


voila ma page .xhtml







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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="ISO-8859-1"?>
<ui:composition xmlns:f="http://java.sun.com/jsf/core"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:rich="http://richfaces.org/rich"
  xmlns:a4j="http://richfaces.org/a4j"
  xmlns:ui="http://java.sun.com/jsf/facelets"
  xmlns:c="http://java.sun.com/jsp/jstl/core"
  xmlns:csf="http://www.cylande.com/csf"
  template="/vues/templates/layout.xhtml">  
  
   
  <ui:define name="content">
	<ui:decorate template="/vues/templates/ficheTemplate.xhtml">
<ui:define name="objet">	
<h:form>							
<rich:simpleTogglePanel id="iDescriptionGe" switchType="client" label="Création  Projet" style=" width : 670px;">											
<h:panelGrid columns="2" style=" width : 567px;">
           <h:outputText value="ID:" />
           <h:inputText value="#{listprojet.idProjet}"  style=" width : 191px;">
   </h:inputText>
        
                     <h:outputText value="Nom:" />
                    <h:inputText label="Name" id="nomn" required="false" value="#{listprojet.nomProjet}" style=" width : 191px;">
                        
                    </h:inputText>   
                                                                       
<h:outputText value="Type" />                
 <rich:comboBox   value="#{listprojet.type}" id="po">
 <f:selectItem  itemValue="projet"/>
 </rich:comboBox>
 
									

<f:facet name="footer">
      
<a4j:commandButton submitMode="ajax"  value="Save"   styleClass="rsButton"    action="#{listprojet.ajoutprojet}"/>
                      
  </f:facet>
                                        
                </h:panelGrid>
   
</rich:simpleTogglePanel>

<rich:simpleTogglePanel id="Ge" switchType="client" label="Création  Groupe" style=" width : 670px;">											
<h:panelGrid columns="2" style=" width : 567px;">
           <h:outputText value="ID:" />
          <h:inputText label="libb" id="nm" required="false"  value="#{groupeBean.idgroupe}" style=" width : 91px;">
   </h:inputText>
        
             
                                                                       
<f:facet name="footer">      
<h:commandButton submitMode="ajax" value="Créer Groupe"   styleClass="rsButton"    action="#{groupeBean.createGroupe}"/>    
            </f:facet>
                                        
            </h:panelGrid>
   
</rich:simpleTogglePanel>


<h:outputText value="ressources" />
<rich:pickList value="#{userBean.result}" > 

 <f:selectItems value="#{userBean.ressourOptions}" /> 
     <a4j:support event="onlistchanged" action="#{userBean.test}"/>
</rich:pickList>
<h:commandButton submitMode="ajax" value="Enregistrer"   styleClass="rsButton"  action="#{groupeBean.enregistrer}"/>  
</h:form>



 <a4j:status onstart="#{rich:component('wait')}.show()"
        onstop="#{rich:component('wait')}.hide()" />
    <rich:modalPanel id="wait" autosized="true" width="200" height="120"
        moveable="false" resizeable="false">
        <f:facet name="header">
            <h:outputText value="Processing" />
        </f:facet>
        <h:outputText value="Wait Please..." />
    </rich:modalPanel>
    <rich:messages>
    </rich:messages>	   
</ui:define>	
	</ui:decorate>

		</ui:define>

	</ui:composition>