affichage message d erreur à coté d'un type file
bonjour,
J utilise des jsp ...Je veux afficher des messages d erreur juste à côté du champ file
Code:
1 2 3 4 5 6 7 8 9 10 11
|
<td><label class="test"><fmt:message
key="test.fichier" /></label></td>
<td><input type="file" name="fichier" accept=""
value="Parcourir" maxlength="256" />
<c:if test='${not empty model.fichierSaisi}'></c:if>
<c:if test="${not empty model.fichierError}">
<span class="error"><fmt:message
key="${model.fichierError}" /></span>
</c:if>
</td> |
Le message d erreur s affiche bien mais il est en dessous du champ moi j'aimerai l afficher à coté du champ parcourir