Holger Knublauch

Added DatePicker to download DDR page

1 <html> 1 <html>
2 <head> 2 <head>
3 <title>ReportingHub - Download DDR</title> 3 <title>ReportingHub - Download DDR</title>
4 - <link href="lib/reportinghub/reportinghub.css" rel="stylesheet" type="text/css" /> 4 + <link rel="stylesheet" type="text/css" href="lib/rh/rh.css" />
5 + <link rel="stylesheet" type="text/css" href="lib/rh/jquery/jquery-ui.css" />
6 +
7 + <script type="text/javascript" src="lib/rh/jquery/jquery.js"></script>
8 + <script type="text/javascript" src="lib/rh/jquery/jquery-ui.js"></script>
9 +
5 </head> 10 </head>
6 <body> 11 <body>
7 12
...@@ -9,7 +14,12 @@ ...@@ -9,7 +14,12 @@
9 14
10 <h3>Download a Daily Drilling Report</h3> 15 <h3>Download a Daily Drilling Report</h3>
11 <p> 16 <p>
12 - TODO 17 + Date: <input type="text" id="datepicker" />
18 + <script>
19 + $(function() {
20 + $("#datepicker").datepicker();
21 + });
22 + </script>
13 </p> 23 </p>
14 </body> 24 </body>
15 </html> 25 </html>
...\ No newline at end of file ...\ No newline at end of file
......
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>ReportingHub - Upload DDR</title> 3 <title>ReportingHub - Upload DDR</title>
4 - <link href="lib/reportinghub/reportinghub.css" rel="stylesheet" type="text/css" /> 4 + <link href="lib/rh/rh.css" rel="stylesheet" type="text/css" />
5 </head> 5 </head>
6 <body> 6 <body>
7 7
......