Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2246 Rev 2248
Line 209... Line 209...
209
	$("#date_fin").datepicker($.datepicker.regional['fr']);
209
	$("#date_fin").datepicker($.datepicker.regional['fr']);
210
	$(".lien_telechargement").live("click", function(event) {ouvrirDansUneNouvelleFenetre(event, $(this))});
210
	$(".lien_telechargement").live("click", function(event) {ouvrirDansUneNouvelleFenetre(event, $(this))});
211
	$('#label_options_export').toggle(
211
	$('#label_options_export').toggle(
212
		function() {
212
		function() {
213
			$('#checkbox_set_cols').show();
213
			$('#checkbox_set_cols').show();
214
			$('#label_options_export').text("- Cacher les options d'export avancées");
214
			$('#label_options_export').text("Cacher les options d'export avancées");
215
		},
215
		},
216
		function() {
216
		function() {
217
			$('#checkbox_set_cols').hide();
217
			$('#checkbox_set_cols').hide();
218
			$('#label_options_export').text("+ Afficher les options d'export avancées");
218
			$('#label_options_export').text("Afficher les options d'export avancées");
219
		}
219
		}
220
	);
220
	);
221
	configurerValidationFormulaire();
221
	configurerValidationFormulaire();
222
});
222
});
223
223