1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<%@include file="/jsp/common/header.jsp"%>
<script type="text/javascript" src="js/ajax/ajaxtags.js"></script>
<script type="text/javascript" src="js/scriptaculous/scriptaculous.js"></script>
<script type="text/javascript" src="js/overlibmws/overlibmws.js"></script>
<html:form action="/UpdateCarte01.do" onsubmit="return strutsValidation(this);">
<td>Date d'effet</td>
<td><html:text styleId="dateeffetId" property="dateeffet" onchange="this.value=checkdate(this);"/></td>
<ajax:updateField
source="dateeffetId"
action="actionId"
target="gradeId,echelonId"
baseUrl="/AjaxLoadCarte01Referent.do"
parameters="dateeffet={dateeffetId}"/>
<input id="actionId" type="button" value="Go"/>
<html:select property="grade" styleId="gradeId" value="${CARTE1.grade}" onchange="actuEchelon();">
<html:options collection="GRADES_LIST" property="code" labelProperty="formatCodeLib" />
</html:select>
<html:text property="echelon" styleId="echelonId" value="${CARTE1.echelon}" /> |
Partager