How to clear a bean field with Stripes.
- by Davoink
In a JSP I have the following field:
<stripes:text name="email"/>
This field is in my action bean(snippet):
public class CreateClaim implements ActionBean {
private String email;
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return email;
}
public…