Changeset 2907

Show
Ignore:
Timestamp:
05/20/10 16:59:00
Author:
johnsa
Message:

user client: work on scheduling interface

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/webuser/webapp/resources/demoskins/themes/bedeworkTheme/eventForm.xsl

    r2905 r2907  
    192192        </li> 
    193193        <!-- Hide from use.  If you wish to enable the access control form for 
    194          events, uncomment this block
     194         events, uncomment this block and the access control block further down in this file
    195195        <li> 
    196196          <a href="javascript:setTab('eventFormTabs',4); show('bwEventTab-Access'); hide('bwEventTab-Details','bwEventTab-Basic','bwEventTab-Recurrence','bwEventTab-Scheduling');"> 
     
    14191419 
    14201420    <!-- Access tab --> 
     1421    <!-- if you want to expose access control on events, uncomment 
     1422         the tab in the event form submenu at the top of this file --> 
    14211423    <!-- ========== --> 
    14221424    <div id="bwEventTab-Access" class="invisible"> 
  • trunk/deployment/webuser/webapp/resources/demoskins/themes/bedeworkTheme/head.xsl

    r2905 r2907  
    177177        var bwGridSDate = new Date("<xsl:value-of select="/bedework/formElements/form/start/yearText/input/@value"/>/<xsl:value-of select="/bedework/formElements/form/start/month/select/option[@selected = 'selected']/@value"/>/<xsl:value-of select="/bedework/formElements/form/start/day/select/option[@selected = 'selected']/@value"/>"); 
    178178        var bwGridAttees = new Array({name:"Arlen Johnson",uid:"johnsa@mysite.edu",role:"CHAIR",status:"ACCEPTED",type:"person"},{name:"",uid:"douglm@mysite.edu",role:"REQ-PARTICIPANT",status:"NEEDS-ACTION",type:"person"}); 
     179        //var bwGridAttees = new Array(); 
    179180        var bwGrid = new bwSchedulingGrid("bwFreeBusyDisplay",bwGridSDate,8,17,bwGridAttees,true,100,"<xsl:value-of select="$resourcesRoot"/>","<xsl:value-of select="$requestFreeBusy"/>","johnsa@mysite.edu"); 
    180181         
  • trunk/deployment/webuser/webapp/resources/demoskins/themes/bedeworkTheme/javascript/bedeworkScheduling.js

    r2906 r2907  
    234234    if (this.attendees.length > 0) { 
    235235      this.requestFreeBusy(); 
     236    } else { 
     237      // no attendees - just display the widget 
     238      this.display(); 
    236239    } 
    237240  }