Table of ContentsPreviousNextIndex

FacilitatePro


Custom Main Screen - Agenda Example

The custom main screen template lays out a participant main screen, such as an agenda or a single current topic button. It includes elements such as a background image or color, welcome message, images, topic table, etc. all of which are XvariablesX that can be edited within the template.
Following is an example of the template for a simple Agenda with links to each active topic.
There are three components of the Custom Main Screen Template:
· User Defined Fields - allow facilitator to simply change images and welcome message text without having to dig deeper into the code. Defines XvariablesX that are called on later in the screen layout and topic table format.
· Screen Layout - sets out the HTML code for the screen layout. Includes XvariablesX that are plugged in according to the User Defined Fields above and other parameters such as the header, conference name and detail, etc. Also includes the XTopicTableX defined in the topic layout below.
· Topic Table Layout - sets out the HTML code for the topic table portion of the agenda page. Includes XvariablesX that are plugged in according to the details of the agenda items such as the topic names, start and end times, etc.

Custom Main Screen Template - Agenda
NOTE: Check the option for Finished/Submit button returns User to Main Screen, not the Topic List when using a Custom Main Screen Template.

Custom Main Screen Template Agenda Example - User Defined Fields
XScreenX
<!-- Special Screen Identifier-->
<!--************ USER DEFINED FIELDS ************-->
Conference Id=
Welcome Message=Agenda
<!--Image Files to Use-->
Background Image=
Voting Image=/images/buttons/vote.png
Results Image=/images/buttons/ballot.png
Chat Image=/images/buttons/chat.png
Action Planning Image=/images/buttons/action.png
Brainstorming Image=/images/buttons/flipchart.png
Closed Image=/images/buttons/closed.png
Image1=/images/group.png
Image2=
Image3=
Image4=
Image Height=
Image Width=
Background Color=FFFFFF
First Row Color=FFFFFF
Second Row Color=E9F2F4
Topic Print Format=<a href="XTopPrintURLX">Print Topic</a>
SubTopic Print Format=<a href="XSubPrintURLX">Print Subtopic</a>

Custom Main Screen Template Agenda Example - Screen Layout
<!--************ SCREEN LAYOUT ************-->
<Body bgcolor="XBackgroundColorX" Background="XBackgroundImageX">
XDefaultHeaderX
<center>
<table width="800" border="0" cellspacing="5" cellpadding="0" bgcolor="#FFFFFF">
<tr>
<td height="100" width="100%" valign="top"> <img src="XImage1X" align="absmiddle" title="Participant Main Screen">
<p></p><span class="title_section_4">XConNameX</span><br>
XConDetailX
</td>
</tr>
</table>
<table id="mytable" class="agenda" width="800" border="0">
<THEAD>
<tr>
<th colspan="3" height="35" align="left" NOWRAP class="title_section_1">XWelcomeMessageX</td>
</th>
</tr>
</THEAD>
<TBODY>
XTopTableX
<tr>
<th height="10" colspan="3" align="left" NOWRAP></td>
</th>
</tr>
</TBODY>
</table>
<table width="800" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
<tr>
<td width="100%" align="left" NOWRAP>
<a href="Main" class="link_mainscreen">Refresh - </a>
<a href="Logoff" class="link_mainscreen">Logoff</a>
</td>
</tr>
</table>
</center>
<form name=FacCom ACTION="Main" method="post">
<input type=hidden name=FC_AjaxButton value=Null>
<Input type="hidden" name="Dummy" VALUE="Dummy">
</form>

Custom Main Screen Template Agenda Example - Topic Table Layout
<!--************ TOPIC TABLE LAYOUT ************-->
XStartTopFormatX
<tr bgcolor="#XRowColorX">
<td valign=top>
<img valign=top border=0 src="XTopModeImageX">
</td>
<td width=100% valign=top colspan=2><a href="XTopURLX">XTopNameX</a></td>
</tr>
XEndTopFormatX
XStartTopFormatNoEntryX
<tr bgcolor="#XRowColorX">
<td valign=top>
<img valign=top border=0 src="XTopModeImageX">
</td>
<td width=100% valign=top colspan=2>XTopNameX</td>
</tr>
XEndTopFormatNoEntryX
XStartSubFormatX
<tr bgcolor="#XRowColorX">
<td valign=top> </td>
<td>
<a href="XSubURLX"><img valign=top border=0 src="XSubModeImageX"></a>
</td>
<td width="100%" valign=top><a href="XSubURLX">XSubNameX</a></td>
</tr>
XEndSubFormatX
XStartSubFormatNoEntryX
<tr bgcolor="#XRowColorX">
<td valign=top> </td>
<td>
<img valign=top border=0 src="XSubModeImageX">
</td>
<td width="100%" valign=top>XSubNameX</td>
</tr>
XEndSubFormatNoEntryX

Custom Screen Template Variables
User Defined Fields
Description
XScreenX
Required in all templates. Designates the page a special screen that will recognize XvariablesX.
Conference Id=
Use to specify access to one conference only. Typically left blank.
Welcome Message=
Add a welcome message or title. Use <br> and <p> for all line breaks. First hard carriage return indicates the end of the message.
Background Image=
Specifies location of XBackgroundImageX image file.
Voting Image=
Specifies location of XTopModeImageX image file for voting modes.
Results Image=
Specifies location of XTopModeImageX image file for results modes.
Chat Image=
Specifies location of XTopModeImageX image file for chat mode.
Action Planning Image=
Specifies location of XTopModeImageX file for action planning mode.
Brainstorming Image=
Specifies location of XTopModeImageX file for brainstorm modes.
Closed Image=
Specifies location of XTopModeImageX image file for closed modes.
Image1=
Specifies location of XImage1X file.
Image2=
Specifies location of XImage2X file. Same for Image3 and Image4.
Image Height=5
Specifies height of XImage1X image.
Image Width=5
Specifies width of XImage1X image.
Background Color=
Sets XBackgroundColorX field.
Topic Print Format=
Specifies XTopPrintFormatX for print link for a topic.
XTopPrintURLX
Inserts URL as a link to the printing options for a topic.
SubTopic Print Format=
Specifies XSubPrintFormatX for print link for a subtopic.
XSubPrintURLX
Inserts URL as a link to the printing options for a subtopic.
Voter Has Submitted a Ballot - 1=
Text when a vote has been record. "You have submitted a ballot."
Voter Has Submitted a Ballot - 2
2nd vote recorded field to allow for formatting. <font color="#01B212">
Voter Has Submitted a Ballot - 3
3rd vote recorded field to allow for formatting. </font>
Voter has not submitted a Ballot=
Text when no vote has been recorded. "You have not submitted a ballot."
Voter has submitted X Items=
Text before number of items in recorded ballot. "Items submitted:" or blank.
First Row Color=
Second Row Color=
Specify alternate row colors in the topic table layout. Specify colors of XRowColorX.

Screen Layout Fields
 
XBackgroundColorX
Set in user defined fields. Used to set background color.
XBackgroundImageX
Set in user defined fields. Used to set background image.
XDefaultHeaderX
Inserts default or custom header for this user.
XImage1X
Set in user defined fields. Image used in screen layout.
XImage2X, XImage3X, XImage4X
Set in user defined fields. Images used in screen layout.
XImageHeightX
Set in user defined fields. Image height used in screen layout.
XImageWidthX
Set in user defined fields. Image width used in screen layout.
XConNameX
Conference name variable.
XConDetailX
Conference detail variable.
XWelcomeMessageX
Set in user defined fields. Used as a text insert in screen layout.
XTopTableX
Inserts the topic table layout as part of the screen layout.
XCurrentDateShortX
Current date variable, short format: 5/29/2001
XCurrentDateAbbreX
Current date variable, abbreviated format: Tue, May 29, 20011
XCurrentDateLongX
Current date variable, long format: Tuesday, May 29, 2001
XCurrentDateX
Current date variable, format: May 29, 2001
XCurrentTimeX
Current time variable, 24 hour format: 17:27:11
XCurrentTimeAMX
Current time variable, AM/PM format: 5:27 PM
XGUserNameX
The name of the User ID of the person accessing the topic.
XGOrg1X
XGOrg2X
XGOrg3x
The organization Level 1, Level 2 and Level 3 fields defined in the user profile of the person accessing the topic. Used to confirm the demographic fields chosen at time of logon or hard-coded into the user profile.
XUser_Demographic001X
...
XUser_Demographic255X
Additional custom demographic fields (001 to 255) associated with the person who is accessing the topic. Stored in the user profile. Typically either imported along with individual user IDs or entered as part of introductory demographic screen.
<a href ="/4DAction/FC/DoAsynchXTrackCodeX?OneButtonPrint/XConIDX">Quick Report</a>
Printer icon with link to generate a Quick Conference Report in a new window or tab.
Full link:
<a href="/4DAction/FC/DoAsynchXTrackCodeX?OneButtonPrint/XConIDX" target="_blank"><img border=0 src="/images/Buttons/print.png" align="absmiddle" title="Quick Conference Report"></a>

Topic Table Layout Fields
Description
XStartTopFormatX
Specifies start of a topic row in the topic table format.
XEndTopFormatX
Specifies end of a topic row in the topic table format.
XStartTopFormatNoEntryX
Specifies start of a topic row in the topic table format for topics with no enter link.
XEndTopFormatNoEntryX
Specifies end of a topic row in the topic table format for topics with no enter link.
XStartSubFormatX
Specifies start of a subtopic row in the topic table format.
XEndSubFormatX
Specifies end of a subtopic row in the topic table format.
XTopStartTimeX
Set in Topic Editor. Topic start time variable.
XTopEndTimeX
Set in Topic Editor. Topic end time variable.
XTopURLX
Inserts URL as a link to an agenda topic.
XTopModeImageX
Set in user defined fields. Inserts image for the topic according to the topic mode.
XTopNameX
Set in Topic Editor. Topic name variable.
XTopDetailX
Set in Topic Editor. Topic detail or description variable.
XTopPrintFormatX
Set in user defined fields. Inserts link to print
XTopOwnerX
Set in Topic Editor. Topic owner variable.
XTopModeX
Set in Facilitator Main Screen or Topic Editor. Topic mode variable.
XTopNumberX
Set in Topic Editor. Topic number variable.
XTopSystemIDX
System defined unique topic identifier. Listed in Conference Manager.
XTopNewX
New items variable. Shows number of new topic items since a user last logged on.
XTopTotalX
Total items variable. Shows total number of items in a topic.
XTopVoteSubmitted_1X
Set above in user definable settings. Text when a vote has been recorded.
XTopVoteSubmitted_2X
Set above in user definable settings. E.g., begin formatting when vote is recorded.
XTopVoteSubmitted_3X
Set above in user definable settings. E.g., end formatting when vote is recorded.
XTopVoteNotSubmittedX
Set above in user definable settings. Text when a vote has not been recorded.
XTopItemsSubmittedTextX
Set above in user definable settings. Text before number of items in recorded ballot.
XTopItemsSubmittedNumX
Number of items in recorded ballot.
XTopLastDateX
Date of last item or comment added to this topic.
XTopLastTimeX
Time of last item or comment added to this topic.
   
XSubStartTimeX
Set in Topic Editor. Subtopic start time variable.
XSubEndTimeX
Set in Topic Editor. Subtopic end time variable.
XSubURLX
Inserts URL as a link to an agenda subtopic.
XSubModeImageX
Set in user defined fields. Inserts image for the subtopic according to the subtopic mode.
XSubNameX
Set in Topic Editor. Subtopic name variable.
XSubDetailX
Set in Topic Editor. Subtopic detail or description variable.
XSubPrintFormatX
Set in user defined fields. Inserts link to print
XSubOwnerX
Set in Topic Editor. Subtopic owner variable.
XSubModeX
Set in Facilitator Main Screen or Topic Editor. Subtopic mode variable.
XSubNumberX
Set in Topic Editor. Subtopic number variable.
XSubSystemIDX
System defined unique subtopic identifier. Listed in Conference Manager.
XSubNewX
New items variable. Shows number of new subtopic items since user last logged on.
XSubTotalX
Total items variable. Shows total number of items in a subtopic.
XSubVoteSubmitted_1X
Set above in user definable settings. Text when a vote has been recorded.
XSubVoteSubmitted_2X
Set above in user definable settings. E.g., begin formatting when vote is recorded.
XSubVoteSubmitted_3X
Set above in user definable settings. E.g., end formatting when vote is recorded.
XSubVoteNotSubmittedX
Set above in user definable settings. Text when a vote has not been recorded.
XSubItemsSubmittedTextX
Set above in user definable settings. Text before number of items in recorded ballot.
XSubItemsSubmittedNumX
Number of items in recorded ballot.
XSubLastDateX
Date of last item or comment added to this subtopic.
XSubLastTimeX
Time of last item or comment added to this subtopic.
XRowColorX
Background color or topic or subtopic row in agenda table. Alternating colors defined by First Row Color and Second Row Color in User Defined Fields.


Facilitate.com, Inc.
Copyright 1992 - 2011, Facilitate.com, Inc.
All Rights Reserved
www.facilitate.com
Voice: (805) 682-6939
support@facilitate.com
Table of ContentsPreviousNextIndex