I have a form and bean. From bean I am retreiving values and setting in DTO. That is also setting in FORM. But getter property value is null. I don’t know what is the problem here. Can anybody suggest on this?
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
public class LoginForm extends XFormBase {
private String title;
public void setTitle(String title) {
this.titleValue = title;
System.out.println(" Form set"+titleValue);
}
public String getTitle() {
this.title = titleValue;
System.out.println(" Form get"+titleValue);
return title;
}
}
Try using this. I suspect a mistake in your getter and setter implementation