bonjour
j'ai une facture a imprimer mais le problème que impression n'affiche pas le contenu des inputText
ça veut dire que il m'affiche juste le forme et le ne prend pas en considération le contenu des input remplis par l'utilisateur et voila mon code:

Code xml : 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
89
90
91
92
93
94
95
96
<body> 
<p:commandButton value="Print">
    <p:printer target="printPanel" />
</p:commandButton>
 
<h:panelGroup id="printPanel">
    	  <p:panel id="details"   >
 
    <h:form>
		<p:fieldset legend="FACTURE" toggleable="true" toggleSpeed="500">
		<h:outputLabel value="FACTURE" style="margin-left:700px;font-size:50px;font-weight:bold"/><br /><br /><br />
 
            <h:panelGrid columns="4" cellpadding="1" cellspacing="5"> 
            	   <p:outputLabel value="VENDEUR" style="font-size:20px;font-weight:bold"/><br />
            	   <p:outputLabel value="ACHETEUR" style="margin-left:200px;font-size:20px;font-weight:bold"/><br />
            	   <p:outputLabel value="Nom De L'Entreprise :"/>
		                <p:inputText value="" />
		           <p:outputLabel value="Nom De L'Entreprise :" style="margin-left:200px" />
		                <p:inputText value="" />
 
		           <p:outputLabel value="Adresse :" />
		                <p:inputText value="" required="true"/>
		            <p:outputLabel value="Adresse :"  style="margin-left:200px"/>
		                <p:inputText value="" required="true"/>
 
                   <p:outputLabel value="CP Ville :" />
                   		<p:inputText value="" required="true"/>
                   <p:outputLabel value="CP Ville :" style="margin-left:200px"/>
                   		<p:inputText value="" required="true"/>	
 
                   <p:outputLabel value="Code Fiscale :" />
                         <p:inputText value="" required="true"/>
                   <p:outputLabel value="Code Fiscale :"  style="margin-left:200px"/>
                         <p:inputText value="" required="true"/>
 
                   <p:outputLabel value="Telephone/Fax :" />
                        <p:inputText value="" required="true"/>
                   <p:outputLabel value="Telephone/Fax :"  style="margin-left:200px"/>
                        <p:inputText value="" required="true"/>    
 
                   <p:outputLabel value="Email :"/>
                         <p:inputText value="" required="true"/>
                   <p:outputLabel value="Email :"  style="margin-left:200px"/>
                         <p:inputText value="" required="true" />   <br/><br/><br/><br/>   
           </h:panelGrid>              
           <h:panelGrid columns="2" cellpadding="1" cellspacing="5"> 
                   <p:outputLabel for="keypad" keypadOnly="true" value="Facture N° :" style="margin-left:400px"/>
                         <p:keyboard id="keypad" value="#{keyboardView.value6}" keypadOnly="true" />   
                   <p:outputLabel for="popup" value="Date De Facturation :" style="margin-left:400px"/>
                         <p:calendar id="popup" value="#{calendarView.date2}" />           
 
       </h:panelGrid><br/><br/><br/>
       <center>
     <h:panelGrid columns="4" cellpadding="3" cellspacing="10"> 
 
        <p:outputLabel value="Nom De Produit"/>
        <p:outputLabel value="Quantite"/>
        <p:outputLabel value="Prix Unitaire HT"/>
        <p:outputLabel value="Prix Total HT"/>
 
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
        <h:inputText value="" />      
 
     </h:panelGrid> 
     </center>
      <h:panelGrid columns="2" cellpadding="3" cellspacing="10"> 
 
        <p:outputLabel value="Total HT" style="margin-left:550px"/>
        <h:inputText value="" /> 
        <p:outputLabel value="TVA a 18%" style="margin-left:550px"/>
        <h:inputText value="" /> 
        <p:outputLabel value="Total TTC" style="margin-left:550px;font-weight:bold"/>
        <h:inputText value="" /> 
 
        </h:panelGrid><br/><br/><br/>
 
               <p:outputLabel value="En votre aimable règlement," style="margin-left:50px"/><br/>
               <p:outputLabel value="Cordialement," style="margin-left:50px"/>
 
 
      </p:fieldset>
    	</h:form>
    	</p:panel>
</h:panelGroup>
 
</body>