developer.jelix.org is not used any more and exists only for
history. Post new tickets on the Github account.
developer.jelix.org n'est plus utilisée, et existe uniquement pour son historique. Postez les nouveaux tickets sur le compte github.
developer.jelix.org n'est plus utilisée, et existe uniquement pour son historique. Postez les nouveaux tickets sur le compte github.
Changes between Initial Version and Version 2 of Ticket #857
- Timestamp:
- Mar 5, 2009, 12:11:15 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #857
- Property Milestone changed from to Jelix 1.1.2
-
Ticket #857 – Description
initial v2 4 4 5 5 Le problème se situe dans le fichier js/jforms_jquery.js à la ligne 384. 6 6 {{{ 7 7 if(t[7] != null) //sous IE t[7] == NaN et donc passe ce test 8 8 ts = parseInt(t[7],10); //ici ts prend donc la valeur NaN et on obtient donc une date invalide 9 }}} 9 10 10 11 J'ai corriger le problème comme ceci : 11 12 {{{ 12 13 if(t[7] != null) 13 14 { … … 16 17 ts = 0; 17 18 } 18 19 }}}