Subversion Repositories eFlore/Applications.cel

Rev

Rev 1418 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1418 Rev 1419
Line 69... Line 69...
69
	}
69
	}
Line 70... Line 70...
70
	
70
	
71
	if(ESPECE_IMPOSEE) {
71
	if(ESPECE_IMPOSEE) {
72
		$("#taxon").attr("disabled", "disabled");
72
		$("#taxon").attr("disabled", "disabled");
-
 
73
		$("#taxon-input-groupe").attr("title","");
-
 
74
		var infosAssociee = new Object();
-
 
75
		infosAssociee.label = INFOS_ESPECE_IMPOSEE.nom_sci_complet;
-
 
76
		infosAssociee.value = INFOS_ESPECE_IMPOSEE.nom_sci_complet;
-
 
77
		infosAssociee.nt = INFOS_ESPECE_IMPOSEE.num_taxonomique;
-
 
78
		infosAssociee.nomSel = INFOS_ESPECE_IMPOSEE.nom_sci;
-
 
79
		infosAssociee.nomSelComplet = INFOS_ESPECE_IMPOSEE.nom_sci_complet;
-
 
80
		infosAssociee.numNomSel = INFOS_ESPECE_IMPOSEE.id;
-
 
81
		infosAssociee.nomRet = INFOS_ESPECE_IMPOSEE["nom_retenu.libelle"];
-
 
82
		infosAssociee.numNomRet = INFOS_ESPECE_IMPOSEE["nom_retenu.id"];
-
 
83
		infosAssociee.famille = INFOS_ESPECE_IMPOSEE.famille;
-
 
84
		infosAssociee.retenu = (INFOS_ESPECE_IMPOSEE.retenu == 'false') ? false : true;
73
		$("#taxon-input-groupe").attr("title","");
85
		$("#taxon").data(infosAssociee);
74
	}
86
	}
Line 75... Line 87...
75
});
87
});
76
 
88