1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <script type="text/javascript">
function verif(){
alert_erreur='';
if(document.mission.TypeMissionDesc.value==''){
alert_erreur+='- Un descriptif\n';
}
if(alert_erreur!=''){
alert("Merci de renseigner :\n"+alert_erreur);
}else{
document.mission.submit();
}
}
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull",
theme_advanced_buttons2 : "styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons3 : "bullist,numlist,|,outdent,indent,blockquote,|,link,unlink,|,preview,|,forecolor,backcolor",
theme_advanced_buttons4 : "hr,|,charmap,advhr,|,print",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
theme_advanced_resizing : true,
// Example content CSS (should be your site CSS)
content_css : "../../css/main.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
<form action="ajout_mission_exe.php" method="post" name="mission">
<textarea name="TypeMissionDesc" style="width:350px; height:150px;"></textarea>
<a href="javascript:verif();" >Valider</a>
</form> |
Partager