diff options
author | Denise sur Lya <sekhmet@lya> | 2021-07-11 10:26:36 +0200 |
---|---|---|
committer | Denise sur Lya <sekhmet@lya> | 2021-07-11 10:26:36 +0200 |
commit | 64be08b2203c801c5231be30a2096790cd0c3b12 (patch) | |
tree | 3af2ed217938129bc6115d6b5726c229219339b2 /static | |
parent | a63ef1b0c9a0d0f1a1fc606a179965f9451945a1 (diff) | |
download | oms-64be08b2203c801c5231be30a2096790cd0c3b12.tar.gz oms-64be08b2203c801c5231be30a2096790cd0c3b12.tar.zst oms-64be08b2203c801c5231be30a2096790cd0c3b12.zip |
dates au format aaaa/mm/dd acceptées.
Diffstat (limited to 'static')
-rw-r--r-- | static/outilspage.js | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/static/outilspage.js b/static/outilspage.js index 9b3f51d..e350274 100644 --- a/static/outilspage.js +++ b/static/outilspage.js | |||
@@ -122,11 +122,14 @@ function change_mode_dates(mode) | |||
122 | var nombalise = listeinput[i].name ; | 122 | var nombalise = listeinput[i].name ; |
123 | if(nombalise == "naissance" || nombalise.slice(0,5) == "date_") | 123 | if(nombalise == "naissance" || nombalise.slice(0,5) == "date_") |
124 | { | 124 | { |
125 | listeinput[i].type = mode ; | 125 | if(mode == "date") { |
126 | if(mode == "date") | ||
127 | listeinput[i].maxlength = taillemaxdate ; | 126 | listeinput[i].maxlength = taillemaxdate ; |
128 | listeinput[i].size = taillemaxdate ; | 127 | listeinput[i].value = listeinput[i].value.replace(/\//g, "-") ; // remplacer les / par des - |
129 | listeinput[i].placeholder = placeholder_date ; | 128 | } |
129 | |||
130 | listeinput[i].type = mode ; | ||
131 | listeinput[i].size = taillemaxdate ; | ||
132 | listeinput[i].placeholder = placeholder_date ; | ||
130 | } | 133 | } |
131 | } | 134 | } |
132 | 135 | ||
@@ -134,7 +137,7 @@ function change_mode_dates(mode) | |||
134 | var elem = document.getElementById("changemode") ; | 137 | var elem = document.getElementById("changemode") ; |
135 | if(mode =="text") | 138 | if(mode =="text") |
136 | { | 139 | { |
137 | elem.innerHTML = "Saisie des dates au format aaaa-mm-jj. <span onclick=\"change_mode_dates('date')\" class=\"bouton\">Cliquez ici</span> pour revenir à une saisie de dates « confortable »." | 140 | elem.innerHTML = "Saisie des dates au format aaaa-mm-jj. <span onclick=\"change_mode_dates('date')\" class=\"bouton\">Cliquez ici</span> pour revenir à une saisie de dates « confortable » avec le calendrier." |
138 | } | 141 | } |
139 | else | 142 | else |
140 | { | 143 | { |