
Dengan menggunakan library jQuery UI kita dengan mudah membuat datepicker. Datepicker adalah sebuah aplikasi untuk memilih tanggal. Berikut akan dijelaskan langkah-langkah pembuatannya.
Pertama-tama kita membuat input :
Tanggal: <input id="tanggal">
Kemudian dilanjutkan dengan include file-file yang diperlukan:
<script src="development-bundle/jquery-1.6.2.js">
</script>
<script src="development-bundle/ui/jquery.ui.core.js">
</script>
<script src="development-bundle/ui/jquery.ui.datepicker.js">
</script>
Dan terakhir adalah coding sesuai kebutuhan:
<script>
(function($){
$("#tanggal").datepicker();
})(jQuery);
</script>
Coding seluruhnya :
<!DOCTYPE html>
<html>
<head>
<title>Datepicker</title>
<link rel="stylesheet" href="css/smoothness/jquery-ui-1.8.16.custom.css">
</head>
<body>
Tanggal: <input id="tanggal">
<script src="development-bundle/jquery-1.6.2.js">
</script>
<script src="development-bundle/ui/jquery.ui.core.js">
</script>
<script src="development-bundle/ui/jquery.ui.datepicker.js">
</script>
<script>
(function($){
$("#tanggal").datepicker();
})(jQuery);
</script>
</body>
</html>
Demonya ada di http://aris.proweb.asia/datepicker.html dengan tampilan seperti gambar di bawah ini:
Kunjungi www.proweb.co.id untuk menambah wawasan anda.
PT. Proweb Indonesia
Perkantoran Duta Merlin No F4
Jl. Gadjah Mada 3-5
Jakarta Pusat
GPS: S 6o 09' 58.1", E 106o 49' 3.3"
| Phone | : | 021 - 2636 3170 |
| 021 - 3377 0050 | ||
| Mobile | : | 0856 - 9360 1378 |
| 0812 - 806 2772 | ||
| 0857 - 1586 8992 | ||
| 0816 - 180 8005 | ||
| Blackberry PIN | : | 23096502 |
| Fax | : | 021 - 633 5765 |
| Web | : | www.proweb.co.id |