Bonjour,

J'ai une jsp qui appelle une action via javascript lors du clic sur un bouton.

Voici un bout du fichier jsp :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
 
			<tr>
				<th rowspan="2"><bean:message key="evalachaud.precisionevt" bundle="champs" /></th>
				<td><bean:message key="evalachaud.precisionmenace" bundle="champs" /></td>
				<td><bean:message key="evalachaud.origine" bundle="champs" /></td>
			</tr>
			<tr>
				<td>		
					<html:select name="declarerForm"
					property="declVO.precisionEvenement.id" value="${declVO.precisionEvenement.id}"
					disabled="${readonly}" styleId="precisionEvenement" multiple="true">
						<nested:notEmpty name="declarerForm" property="listprecisionevenement">
							<c:set var="locale" value="${declarerForm.locale}" scope="request" />
							<nested:optionsCollection name="declarerForm" property="listprecisionevenement" label="libelle" value="id" />
						</nested:notEmpty>
					</html:select>
				</td>
				<td>
					<logic:iterate property="listOrigineEvenement" name="declarerForm" id="origineEvenement">
						<html:radio property="declVO.origineEvenement" value="${origineEvenement.id}" disabled="${readonly}"/>
						<bean:message key="${origineEvenement.key}" bundle="enumDesc" />
						<br>
					</logic:iterate>
				</td>
			</tr>
		</table>
	</td>
</tr>
<tr>
	<td colspan="4">
	<c:if test="${!readonly}">
		<html:link styleClass="Bouton" href="javascript:envoiValidationForm('ajouterQualification');">
			<bean:message key="common.ajouterqualification" bundle="champs" />
		</html:link>
	</c:if>
	</td>
</tr>
Lorsque je clique sur le bouton, j'ai l'erreur suivante :

java.lang.IllegalArgumentException: No bean specified

D'ou peut venir le problème?

Merci d'avance