I have a <h:inputText>
which accepts a long
value like this
<h:inputText value="#{ServiceTable.ID}" />
The property is declared like this
public class ServiceTable {
private long ID;
// Getter and setter for ID.
}
When I open the page, I always see 0
in the textbox. How can I avoid it? I just need an empty textbox. I am using JSF 1.2.