Twitter iPhone pliant OnePlus 11 PS5 Disney+ Orange Livebox Windows 11

Plus d'affichage après le taglib

1 réponse
Avatar
groups nope
Bonsoir,

j'ai une page avec un taglib qui me sort une dropdown list qui marche
tr=E8s bien.
Pb, apr=E8s le taglib, le reste de la page ne s'affiche pas, tout est
blanc. Evidemment si je mets mon taglib =E0 la fin de ma page, tout
s'affiche avant :)
j'ai regard=E9 la javadoc mais rien trouv=E9 de probant.

Ma classe en abr=E9g=E9 :

public class SymbolListTag extends TagSupport
{


public int doEndTag()
{
return EVAL_PAGE;


}

public int doStartTag() throws JspTagException
{
try
{
JspWriter __out =3D this.pageContext.getOut();
__out.write("ici le menu d=E9roulant");
__out.flush();
__out.clearBuffer();

}
catch (IOException ex)
{
logger.error("couldn't print taglib : " + ex.getMessage());
throw new JspTagException(
"Fatal error occured in " + this.getClass().getName());

}
return SKIP_BODY;
}

Merci pour votre aide car je s=E8che :(

1 réponse

Avatar
groups nope
Re, bon j'ai trouvé : dans le html généré, j'avais oublié la bali se </
select> honte à moi !!!

Désolé pour le dérangement...