Bonjour, j'utilise un code maison pour le chargement sans "rechargement" de page (ajax quoi) seulement j'ai jamais réussi a faire fonctionner un code qui était chargé avec la page donc j'ai décidé d'utiliser prototype pour ça voila le code:
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
function AjaxRequeteFormulaire(url,container){
new Ajax.Request(url,
  {
    method:'post',
    onLoading: function (xhr){
    displayStaticMessage('<img src=\'images/loader2.gif\' />',false);
        },
    onComplete: function (xhr){
    $(container).innerHTML = xhr.responseText;
    closeMessage();
        },
    onFailure: function (xhr){
    closeMessage();
    displayStaticMessage2('Il y a eu une erreur<br/><a onclick="closeMessage();">Fermer</a>',false);
        }
  });
}
Et voila la page qui est appelée:

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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?
session_start ();
 
if (isset($_SESSION['login']) && isset($_SESSION['pass'])) {
 
 
define ("NB_SECONDES_PAR_JOUR", 86400);
 
function convert_date_to_num($date)
{
    if(strlen($date)==10 and substr($date,2,1)=="/" and substr($date,5,1)=="/" )
    {
        $datean=substr($date,6,4);
        $datemois=substr($date,3,2);
        $datejour=substr($date,0,2);
        $date=$datean.$datemois.$datejour;
    }
    return $date;
}
function convert_num_to_date($num)
{
    if(strlen($num)==8 and is_numeric($num) )
    {
        $an=substr($num,0,4);
        $mois=substr($num,4,2);
        $jour=substr($num,6,2);
        $num=$jour."/".$mois."/".$an;
    }
    return $num;
}
function nb_jours($fin, $debut)
{
	if(!$debut)
		return -1;
 
	$annee_fin = substr($fin, 0, 4);
	$mois_fin = substr($fin, 4, 2);
	$jour_fin = substr($fin, 6, 2);
 
	/*
	echo "annee_fin: ".$annee_fin."<br>";
	echo "mois_fin: ".$mois_fin."<br>";
	echo "jour_fin: ".$jour_fin."<br>";
	*/
 
	$annee_debut = substr($debut, 0, 4);
	$mois_debut = substr($debut, 4, 2);
	$jour_debut = substr($debut, 6, 2);
 
	/*
	echo "annee_debut: ".$annee_debut."<br>";
	echo "mois_debut: ".$mois_debut."<br>";
	echo "jour_debut: ".$jour_debut."<br>";
	*/
 
	$timestamp_fin = mktime(0, 0, 0, $mois_fin, $jour_fin, $annee_fin);
	$timestamp_debut = mktime(0, 0, 0, $mois_debut, $jour_debut, $annee_debut);
 
    $diff = $timestamp_fin - $timestamp_debut;
 
	//echo "diff: ".$diff."<br>";
 
	$jour = date("d", $timestamp_debut);
	$mois = date("m", $timestamp_debut);
	$annee = date("Y", $timestamp_debut);
 
 
	//echo "$nb_ferie<br>";
 
	$diff /= NB_SECONDES_PAR_JOUR;
 
	//echo "diff: ".$diff."<br>";
 
    return $diff;
}
 
 
include('../includes/connectionbdd.php');
 
$req = 
"SELECT         * 
FROM            xxx
INNER JOIN      xxx
ON              xxx = xxx
INNER JOIN      xxx
ON              xxx = xxx
WHERE           valid = 1
AND             xxx != 00000000
AND             xxx = 00000000
ORDER BY        xxx ASC";
$result = mysql_query($req)
or die ('Erreur:' . mysql_error());
$total=mysql_num_rows($result);
$i=0;
$ok = true;
?>
<table>
<tr>
<td class="titretd">
N&deg; fiche
</td>
<td class="titretd">
Date fiche
</td>
<td class="titretd">
Commercial
</td>
<td class="titretd">
Raison sociale
</td>
<td class="titretd">
Date envoi
</td>
<td class="titretd">
Retard
</td>
 
<td class="titretd">
Commentaire
</td>
 
<?
	if($_SESSION['admin'] == 1){
?>
        <td class="titretd">Modifier</td>
        <?
	}else{
?>
        <td class="titretd">Afficher</td>
<?
	}
?>
</tr>
<?
 
while($row = mysql_fetch_array($result)) {
$date = $row['date_envoi_fiche'];
 
$ecart_jours = nb_jours(date('Ymd'),$date);    
 
        if($ecart_jours >= 30){
            $color = "fondrouge";
                    $ok = !$ok;
        }else{
                if($ok == true){
                    $color = "fondblanc";
                    $ok = !$ok;
                }
                else
                {
                    $color = "fondgris";
                    $ok = !$ok;
                }
                }
$numficheform = $row['numfiche'];
$datefiche = convert_num_to_date($row['datefiche']);
$dateenvoi = convert_num_to_date($row['date_envoi_fiche']);
 
// -- DATE 1 --
 
 
//if($ecart_jours >= 30){
    $i++;
    ?>
    <tr>
    <td class="<?= $color ?>">
    <input type="hidden" name="numfiche" id="numfiche" value="<?= $numficheform ?>"/><?= $numficheform ?>
    </td>
    <td class="<?= $color ?>">
    <input type="hidden" name="datefiche" id="datefiche" value="<?= $datefiche ?>"/><?= $datefiche ?>
    </td>
    <td class="<?= $color ?>">
    <input type="hidden" name="commercial" id="commercial" value="<?= $row['numcom'] ?>"/><?= $row['nomcom'] ?> <?= $row['prenomcom'] ?>
    </td>
    <td class="<?= $color ?>">
    <input type="hidden" name="raisonsociale" id="raisonsociale" value="<?= $row['raisonsociale'] ?>"/><?= $row['raisonsociale'] ?>
    </td>
    <td class="<?= $color ?>">
    <input type="hidden" name="dateenvoi" id="dateenvoi" value="<?= $dateenvoi ?>"/><?= $dateenvoi ?>
    </td>
    <td class="<?= $color ?>">
    <input type="hidden" name="nbjretard" id="nbjretard" value="<?= $ecart_jours ?>"/><?= round($ecart_jours) . ' Jours' ?>
    </td>
    <td class="<?= $color ?>">
    <p id="comment<?= $i ?>" ><?= $row['comment1'] ?></p>
    <script type="text/javascript">
         new Ajax.InPlaceEditor('comment<?= $i ?>', 'test.php',{callback: function(form, value) { return 'comment1=' + encodeURIComponent(value)},clickToEditText:"Cliquez pour modifier",rows:1,okControl:"link",cancelControl:"false",okText:"Enregistrer",savingText:"Enregistrement...",ajaxOptions:{method: 'post'}});
    </script>
    </td>
    <?
	if($_SESSION['admin'] == 1){
?>
        <td class="<?= $color ?>"><form id="modif<?= $i ?>" name="modif<?= $i ?>" ><input type="hidden" name="numficheform" id="numficheform" value="<?= $numficheform ?>"/>
    	<input type="button" class="modifbutton" onclick="charge_result_form('action/modiffiche2.php','modif<?= $i ?>','corp')" /> 
    	</form></td>
        <?
	}else{
?>
        <td class="<?= $color ?>"><form id="modif<?= $i ?>" name="modif<?= $i ?>" ><input type="hidden" name="numficheform" id="numficheform" value="<?= $numficheform ?>"/>
    	<input type="button" class="affichebutton" onclick="charge_result_form('action/afffiche.php','modif<?= $i ?>','corp')" /> 
    	</form></td>
<?
	}
?>
    </tr>
    <?
//}
 
 
}
 
?>
</table>
<?
}else{
 
		header('Location: login.php');
}
?>
Seulement le InPlaceEditor ne fonctionne que en appel direct de la page et non pas en Ajax... quelqu'un a une idée?