Template:Caltech Calendar

From 2012.igem.org

(Difference between revisions)
 
(One intermediate revision not shown)
Line 1: Line 1:
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
<TABLE BORDER=3 CELLSPACING=3 CELLPADDING=3>
-
<html xmlns="http://www.w3.org/1999/xhtml">
+
<TR>
-
<head>
+
<TD COLSPAN="7" ALIGN=center><B>December 2001</B></TD>
-
  <title>Calendar | JavaScript Examples | UIZE JavaScript Framework</title>
+
</TR>
-
  <meta name="keywords" content="widget Uize.Widget.Calendar"/>
+
-
  <meta name="description" content="See an example of a calendar widget that you can use on your own Web site to let users choose a date from a grid, with controls for navigating months."/>
+
-
  <link rel="alternate" type="application/rss+xml" title="UIZE JavaScript Framework - Latest News" href="http://www.uize.com/latest-news.rss"/>
+
-
  <link rel="stylesheet" href="../css/page.css"/>
+
-
  <link rel="stylesheet" href="../css/page.example.css"/>
+
-
  <link rel="stylesheet" href="../css/widget.calendar.css"/>
+
-
  <style type="text/css">
+
-
    .calendarContainer {
+
-
      margin:auto;
+
-
    }
+
-
  </style>
+
-
</head>
+
-
<body>
+
<TR>
 +
<TD COLSPAN="7" ALIGN=center><I>Another year comes to an end</I></TD>
 +
</TR>
-
<script type="text/javascript" src="../js/Uize.js"></script>
+
<TR>
 +
<TD ALIGN=center>Sun</TD>
 +
<TD ALIGN=center>Mon</TD>
 +
<TD ALIGN=center>Tue</TD>
 +
<TD ALIGN=center>Wed</TD>
 +
<TD ALIGN=center>Thu</TD>
 +
<TD ALIGN=center>Fri</TD>
 +
<TD ALIGN=center>Sat</TD>
 +
</TR>
-
<h1 class="document-title">
+
<TR>
-
  <a id="page-homeLink" href="../index.html" title="UIZE JavaScript Framework home"></a>
+
<TD ALIGN=center></TD>
-
  <a href="../javascript-examples.html" class="breadcrumb breadcrumbWithArrow">JAVASCRIPT EXAMPLES</a>
+
<TD ALIGN=center></TD>
-
  Calendar
+
<TD ALIGN=center></TD>
-
  <div id="page-actions" class="pageActions">
+
<TD ALIGN=center></TD>
-
    <a href="source-code/calendar.html" class="buttonLink">SOURCE</a>
+
<TD ALIGN=center></TD>
-
  </div>
+
<TD ALIGN=center></TD>
-
</h1>
+
<TD ALIGN=center>1</TD>
 +
</TR>
-
<div class="main">
+
<TR>
-
  <!-- explanation copy -->
+
<TD ALIGN=center>2</TD>
 +
<TD ALIGN=center>3</TD>
 +
<TD ALIGN=center>4</TD>
 +
<TD ALIGN=center>5</TD>
 +
<TD ALIGN=center>6</TD>
 +
<TD ALIGN=center>7</TD>
 +
<TD ALIGN=center>8</TD>
 +
</TR>
-
  <div class="explanation">
+
<TR>
-
    <p>In this example, an instance of the <a href="../reference/Uize.Widget.Calendar.html"><code>Uize.Widget.Calendar</code></a> class is used to wire up a simple calendar widget. The HTML markup for the calendar widget is provided by the <a href="../reference/Uize.Templates.Calendar.html"><code>Uize.Templates.Calendar</code></a> JavaScript template. Initially, the calendar's value is set to today's date. However, you can change it's value by clicking on a different date of this month, or you can use the arrows to navigate to and select a date from a different month.</p>
+
<TD ALIGN=center>9</TD>
 +
<TD ALIGN=center>10</TD>
 +
<TD ALIGN=center>11</TD>
 +
<TD ALIGN=center>12</TD>
 +
<TD ALIGN=center>13</TD>
 +
<TD ALIGN=center>14</TD>
 +
<TD ALIGN=center>15</TD>
 +
</TR>
-
    <p>The month and year that the calendar displays are accessible through the <code>month</code> and <code>year</code> set-get properties, respectively. Below the calendar widget is a summary of its current state and some links to let you programmatically interact with the calendar. Play around with the calendar widget and see how the state updates, and mess with the links to control the calendar.</p>
+
<TR>
-
  </div>
+
<TD ALIGN=center>16</TD>
 +
<TD ALIGN=center>17</TD>
 +
<TD ALIGN=center>18</TD>
 +
<TD ALIGN=center>19</TD>
 +
<TD ALIGN=center>20</TD>
 +
<TD ALIGN=center>21</TD>
 +
<TD ALIGN=center>22</TD>
 +
</TR>
-
  <div id="page_calendar-shell"></div>
+
<TR>
-
  <br/>
+
<TD ALIGN=center>23</TD>
 +
<TD ALIGN=center>24</TD>
 +
<TD ALIGN=center>25</TD>
 +
<TD ALIGN=center>26</TD>
 +
<TD ALIGN=center>27</TD>
 +
<TD ALIGN=center>28</TD>
 +
<TD ALIGN=center>29</TD>
 +
</TR>
-
  <!-- programmatic interface examples -->
+
<TR>
 +
<TD ALIGN=center>30</TD>
 +
<TD ALIGN=center>31</TD>
 +
<TD ALIGN=center></TD>
 +
<TD ALIGN=center></TD>
 +
<TD ALIGN=center></TD>
 +
<TD ALIGN=center></TD>
 +
<TD ALIGN=center></TD>
-
  <div class="programmaticInterface">
+
</TR>
-
    <ul>
+
-
      <li>Current State
+
-
        <ul>
+
-
          <li><b>calendar.get ('value') == </b>new Date ('<span id="page-calendarValue"></span>')</li>
+
-
          <li><b>calendar.get ('month') == </b><span id="page-calendarMonth"></span></li>
+
-
          <li><b>calendar.get ('year') == </b><span id="page-calendarYear"></span></li>
+
-
        </ul>
+
-
      </li>
+
-
      <li>Navigate Programmatically
+
-
        <ul>
+
-
          <li>MONTH
+
-
            <ul>
+
-
              <li>PREVIOUS MONTH: <a href="javascript://" class="linkedJs">calendar.set ({month:calendar.get ('month') - 1})</a></li>
+
-
              <li>NEXT MONTH: <a href="javascript://" class="linkedJs">calendar.set ({month:calendar.get ('month') + 1})</a></li>
+
-
            </ul>
+
-
          </li>
+
-
          <li>YEAR
+
-
            <ul>
+
-
              <li>PREVIOUS YEAR: <a href="javascript://" class="linkedJs">calendar.set ({year:calendar.get ('year') - 1})</a></li>
+
-
              <li>NEXT YEAR: <a href="javascript://" class="linkedJs">calendar.set ({year:calendar.get ('year') + 1})</a></li>
+
-
            </ul>
+
-
          </li>
+
-
        </ul>
+
-
      </li>
+
-
    </ul>
+
-
  </div>
+
-
</div>
+
-
<!-- JavaScript code to insert the calendar widget and wire up the page -->
+
</TABLE>
-
 
+
-
<script type="text/javascript">
+
-
 
+
-
Uize.module ({
+
-
  required:[
+
-
    'UizeDotCom.Page.Example.library',
+
-
    'UizeDotCom.Page.Example',
+
-
    'Uize.Widget.Calendar',
+
-
    'Uize.Templates.Calendar'
+
-
  ],
+
-
  builder:function () {
+
-
    /*** create the example page widget ***/
+
-
      var page = window.page = UizeDotCom.Page.Example ({evaluator:function (code) {eval (code)}});
+
-
 
+
-
    /*** add the calendar child widget ***/
+
-
      var calendar = page.addChild (
+
-
        'calendar',
+
-
        Uize.Widget.Calendar,
+
-
        {
+
-
          built:false,
+
-
          html:Uize.Templates.Calendar
+
-
        }
+
-
      );
+
-
 
+
-
    /*** wire up the page widget ***/
+
-
      page.wireUi ();
+
-
 
+
-
    /*** some code for demonstrating the widget's programmatic interface ***/
+
-
      function displayCalendarState () {
+
-
        page.setNodeValue ('calendarValue',calendar.get ('value'));
+
-
        page.setNodeValue ('calendarMonth',calendar.get ('month'));
+
-
        page.setNodeValue ('calendarYear',calendar.get ('year'));
+
-
      }
+
-
      calendar.wire ('Changed.value',displayCalendarState);
+
-
      calendar.wire ('Changed.month',displayCalendarState);
+
-
      calendar.wire ('Changed.year',displayCalendarState);
+
-
      displayCalendarState ();
+
-
  }
+
-
});
+
-
 
+
-
</script>
+
-
 
+
-
</body>
+
-
</html>
+

Latest revision as of 00:17, 28 June 2012

December 2001
Another year comes to an end
Sun Mon Tue Wed Thu Fri Sat
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