Modification CSS formulaire d'ajout de conference

This commit is contained in:
2008-02-15 18:21:56 +00:00
parent d370d2d7b8
commit 38bd59d2a6
7 changed files with 367 additions and 244 deletions

View File

@@ -7,7 +7,8 @@
<script type='text/javascript' src='./dwr/util.js'></script>
<script type='text/javascript' src='./dwr/interface/AddCriteriaJS.js'></script>
<script type='text/javascript' src='./javascripts/prototype.js'></script>
<script type='text/javascript' src='./javascripts/yacos/addConference_invitation.js'></script>
<script type='text/javascript'
src='./javascripts/yacos/addConference_invitation.js'></script>
<script type='text/javascript' src='./javascripts/scriptaculous.js'></script>
<script type='text/javascript'>
@@ -109,79 +110,99 @@ function filterUser(el, value) {
</head>
<body>
<h4 class="title">
<c:choose>
<c:when test="${param['action'] eq 'modify'}">
<fmt:message key="conference.titleModify" />
</c:when>
<c:otherwise>
<fmt:message key="conference.titleAdd" />
</c:otherwise>
</c:choose>
</h4>
<h4 class="title"><c:choose>
<c:when test="${param['action'] eq 'modify'}">
<fmt:message key="conference.titleModify" />
</c:when>
<c:otherwise>
<fmt:message key="conference.titleAdd" />
</c:otherwise>
</c:choose></h4>
<fmt:message key="step">
<fmt:param value="5" />
<fmt:param value="5" />
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step5" /></p>
<form:form commandName="formConference" name="monForm">
Step (5/5) <br/>
This step allows you to add PC Member to the conference.<br/>
You can add a PC Member using the list below, or inviting someone using his email.<br/>
<br/>
Filter <form:input id="myfilter" path="myfilter" />
<br /> <br />
<table border="1" id="tableName" style="display: none;">
<thead>
<table>
<tbody>
<tr>
<th>Name</th>
<th>Actions</th>
<td class="formLabel"><fmt:message key="conference5.findUsers" />
</td>
<td>Filter <form:input id="myfilter" path="myfilter" /> <br />
<br />
<table border="1" id="tableName" style="display: none;">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="personbody">
<tr id="pattern" style="display: none;">
<td><span id="tablePerson">Person</span></td>
<td><a id="addNew" href="#" onclick="addPerson(this.id)">Add</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</thead>
<tbody id="personbody">
<tr id="pattern" style="display: none;">
<td><span id="tablePerson">Person</span></td>
<tr>
<td class="formLabel"><fmt:message key="conference5.usersList" />
</td>
<td>
<a id="addNew" href="#" onclick="addPerson(this.id)" >Add</a>
<table border="1" id="tableNameAdded" style="display: none;">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="personbodyadded">
<tr id="patternadded" style="display: none;">
<td><span id="tablePersonadded">Person</span></td>
<td><a id="supprPerson" href="#"
onclick="deletePerson(this.id)">Delete</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message
key="conference5.invitation.send" /></td>
<td>eMail: <input id="emailAddress" type="text" /> <input
type="button" name="inviteButton" id="inviteButton" value="Invite" />
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message
key="conference5.invitationList" /></td>
<td>
<div id="invitationList" class="dynamicList">
<div class="dynamicListHeader"><fmt:message
key="form.addConference.invitationsHeader" /></div>
</div>
<input type="button" id="removeInvitationButton"
name="removeInvitation"
value="<fmt:message key="button.removeSelected" />" /> <br />
</td>
</tr>
</tbody>
</table>
<br />
<table border="1" id="tableNameAdded" style="display: none;">
<thead>
<tfoot>
<tr>
<th>Name</th>
<th>Actions</th>
<td>&nbsp;</td>
<td><input type="submit" name="_target3" value="Back">
<input type="submit" name="_finish" value="Finish" /></td>
</tr>
</thead>
<tbody id="personbodyadded">
<tr id="patternadded" style="display: none;">
<td><span id="tablePersonadded">Person</span></td>
<td>
<a id="supprPerson" href="#" onclick="deletePerson(this.id)" >Delete</a>
</td>
</tr>
</tbody>
</tfoot>
</table>
<br />
<fmt:message key="invitation.send"/> <br/>
Mail: <input id="emailAddress" type="text"/> <input type="button" name="inviteButton" id="inviteButton" value="Invite"/>
<div id="invitationList" class="dynamicList">
<div class="dynamicListHeader">
<fmt:message key="form.addConference.invitationsHeader" />
</div>
</div>
<input type="button" id="removeInvitationButton" name="removeInvitation" value="<fmt:message key="button.removeSelected" />"/>
<br />
<input type="submit" align="middle" name="_target3" value="Back">
<input type="submit" align="middle" name="_finish" value="Finish" />
</form:form>
</form:form>
<script type="text/javascript">
init();