Changeset 17422 for schedule/Module
- Timestamp:
- 01/03/14 09:23:03 (11 years ago)
- Location:
- schedule/Module
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/Scheduling.php
r16982 r17422 1 1 <?php 2 2 include '../include/factdb.php'; 3 include ' ../function/SplitDelete.php';3 include 'control.php'; 4 4 ?> 5 5 <table width="100%" id="TableHolder" > … … 13 13 <td width="141" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center" >Transaction</td> 14 14 </tr> 15 16 15 </table> 17 16 <div id="Data"> 17 <script>addRowClone();</script> 18 18 </div> 19 <table width="100%">20 <tr>21 22 23 <td style="border:0px solid white; color:#37DFB1; font-size:14px;" width="80%" align="center"> </td>24 25 </tr>26 </table> -
schedule/Module/calendar.php
r16926 r17422 58 58 var CAL = Calendar.setup({ 59 59 cont: "cont", 60 // weekNumbers: true,61 60 selectionType: Calendar.SEL_MULTIPLE, 62 61 showTime: 24, 63 //fdow : 1,64 62 dateInfo:getDateInfo 65 // titleFormat: "%B %Y"66 63 }) 67 64 </script> 68 65 </td> 69 70 66 <tr> 71 67 <td> 72 68 <script type="text/javascript"> 73 $(document).ready(function(){ 74 Graph(); 75 }); 76 </script> 77 <script type="text/javascript"> 69 $(document).ready(function(){ 70 Graph(); 71 }); 78 72 var day; 79 73 var year; 80 74 var month; 81 75 CAL.addEventListener("onSelect", function(){ 82 day =this.selection.print("%d").join("\n"); 83 month =this.selection.print("%m").join("\n"); 84 year =this.selection.print("%Y").join("\n"); 85 GetData(); 86 GetDate(); 87 $('#Scheduling').load('Module/Scheduling.php?days='+year+'-'+month+'-'+day); 88 //$.get("function/function.php", {days:year+'-'+month+'-'+day}); 89 //$load("function/function.php?days:year+-'+month+'-'+day); 90 //$.get("function/SplitDelete.php", {days:year+'-'+month+'-'+day}); 91 92 93 //GetDate(); 94 95 96 97 }); 98 99 100 76 day =this.selection.print("%d").join("\n"); 77 month =this.selection.print("%m").join("\n"); 78 year =this.selection.print("%Y").join("\n"); 79 GetData(); 80 GetDate(day,month,year); 81 $('#Scheduling').load('Module/Scheduling.php?days='+year+'-'+month+'-'+day); 82 }); 101 83 </script> 102 84 </td> … … 107 89 </tr> 108 90 </table> 109 110 91 </body> 111 92 </html> -
schedule/Module/link.php
r16982 r17422 1 2 3 4 5 6 7 8 <script src="js/jquery-1.9.1.js"></script> 1 <script src="js/jquery-1.7.1.js"></script> 9 2 <script src="js/jquery-ui-1.10.1.custom.js"></script> 10 3 <link href="css/jquery-ui-1.10.1.custom.css" rel="stylesheet">
Note:
See TracChangeset
for help on using the changeset viewer.