| 455 | | // create the add attendee html |
|---|
| 456 | | var addAttendeeHtml = ''; |
|---|
| 457 | | /*addAttendeeHtml += '<input type="text" name="uri" width="30" id="bwRaUri"/>'; |
|---|
| 458 | | addAttendeeHtml += '<input type="button" value="add" />'; |
|---|
| 459 | | addAttendeeHtml += '<br/>role:'; |
|---|
| 460 | | addAttendeeHtml += '<select name="role">'; |
|---|
| 461 | | addAttendeeHtml += '<option value="REQ-PARTICIPANT">required participant</option>'; |
|---|
| 462 | | addAttendeeHtml += '<option value="OPT-PARTICIPANT">optional participant</option>'; |
|---|
| 463 | | addAttendeeHtml += '<option value="CHAIR">chair</option>'; |
|---|
| 464 | | addAttendeeHtml += '<option value="NON-PARTICIPANT">non-participant</option>'; |
|---|
| 465 | | addAttendeeHtml += '</select>';*/ |
|---|
| 466 | | |
|---|
| 467 | | // generate the date row - includes top left corner for "add attendee" |
|---|
| | 455 | // create navigation buttons |
|---|
| | 456 | var navigationHtml = ''; |
|---|
| | 457 | navigationHtml += '<div id="bwGridNav">'; |
|---|
| | 458 | navigationHtml += ' <a href="javascript:bwGrid.gotoPreviousRange()" title="previous date range">'; |
|---|
| | 459 | navigationHtml += ' <img src="' + this.resourcesRoot + '/images/std-arrow-left.gif" width="13" height="16" alt="previous date range" border="0"/>'; |
|---|
| | 460 | navigationHtml += ' </a>'; |
|---|
| | 461 | navigationHtml += ' <a href="javascript:bwGrid.gotoNextRange()" title="next date range">'; |
|---|
| | 462 | navigationHtml += ' <img src="' + this.resourcesRoot + '/images/std-arrow-right.gif" width="13" height="16" alt="next date range" border="0"/>'; |
|---|
| | 463 | navigationHtml += ' </a>'; |
|---|
| | 464 | navigationHtml += '</div>'; |
|---|
| | 465 | |
|---|
| | 466 | // generate the date row - includes top left corner navigation buttons |
|---|