ajout de la fonction pour le select

This commit is contained in:
Damien LASSERRE 2012-01-20 16:20:00 +00:00
parent 35103184a1
commit 2ac050c61f

View File

@ -112,6 +112,18 @@ $(document).ready(function(){
return false;
});
/* Cacher le lien validé dans le cas ou les données ne sont pas coohérantes */
$('.intervalSelect').change(function(){
var key = $(this).attr('id');
if($(this).val() > $('select[name='+key+'2] option:selected').val()){
$('span#'+key).html('<span style="color:red;font-size:9px">Donnée incohérantes</span>')
}else if($(this).val() > $('select[name='+key+'2] option:selected').val()) {
}
else
$('span#'+key).html(' <span id="'+key+'"><a href="" class="intervalSelect" id="'+key+'">Valider</a></span>');
});
$('#tabs').delegate('a.intervalSelect', 'click', function(e){
e.preventDefault();
var key = $(this).attr('id');