Hi everyone,
i have the problem that when i set the value property of my inputText control (its a managed bean) and open the xpage in the browser its rendered as a span tag.
Does somebody have a solution for this?
Thanks,
Benjamin
Hi everyone,
i have the problem that when i set the value property of my inputText control (its a managed bean) and open the xpage in the browser its rendered as a span tag.
Does somebody have a solution for this?
Thanks,
Benjamin
Subject: Reoving span from computed text
If you remove the id attribute, no span is produced.
Subject: don’t work
Hi Paul,
thanks for your help, but unfortunately your suggestion don’t work.
and i’m not using a computed text but a inputText control. maybe thats the reason…
Subject: SOLUTION
Hi,
the problem was that the managed bean returnded a primitive data type (int).
if you return an object (like Integer) it works.