Correction de divers bug.

Changement de listConference, ça affiche les roles maintenant
This commit is contained in:
Frederic Debuire
2008-02-16 15:36:20 +00:00
parent de2991b335
commit 3b0c845902
16 changed files with 174 additions and 156 deletions

View File

@@ -123,7 +123,7 @@ function writePerson() {
else
$('errorMax').style.display = "none";
if (person.max <= person.min) {
if (parseInt(person.max) <= parseInt(person.min)) {
dwr.util.setValues({errorMax:"The min value shouldn't be superior to the max value"});
$('errorMax').style.display = "";
}
@@ -215,7 +215,7 @@ var CritereManager = Class.create({
</tr>
<tr>
<td>Min:</td>
<td><input id="min" type="text" /></td>
<td><input id="min" type="text"/></td>
<td><div class="formError"><span id="errorMin" style="display: none;"></span></div></td>
</tr>
<tr>