Hallo zusammen,
nutze das jquery datepicker Modul.
Will das Format umstellen funktioniert jedoch nicht. Alles andere geht.
Wie bekomm ich hin, dass mein Format so aussieht:
"Wochentag"-"Tag"-"Monat"-"Jahr"
??
Mein Code:
Vielen Dank für eure Bemühungen !!
nutze das jquery datepicker Modul.
Will das Format umstellen funktioniert jedoch nicht. Alles andere geht.
Wie bekomm ich hin, dass mein Format so aussieht:
"Wochentag"-"Tag"-"Monat"-"Jahr"
??
Mein Code:
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>
<link href="../style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker();
$( "#format" ).change(function() {
$( "#datepicker" ).datepicker( "option", "dateFormat", $( this ).val() );
});
});
</script>
</head>