Hi,
I'm using seam 1.2.0PATCH1 with a PostgreSQL Base.
I've got a problem with Validator Length.
Here is my entity code :
@Column(name = "colaff", nullable = false, length = 1)
@NotNull
@Length(max = 1)
public char getColaff() {
return this.colaff;
}<h:outputLabel for="colaff">
colaff
<span class="required">*</span>
</h:outputLabel>
<s:decorate id="colaffDecoration">
<h:inputText id="colaff"
required="true"
value="#{collectivitesHome.instance.colaff}">
<a:support event="onblur" reRender="colaffDecoration" />
</h:inputText>
</s:decorate>