A:
You can try the Output component, eg.:
- Code: Select all
<t:output value="lastLoginDate" format="dateViewFormat"/>
with some extra java for the format:
- Code: Select all
private DateFormat _dateViewFormat = new SimpleDateFormat("dd/MM/yyyy");
public DateFormat getDateViewFormat() {
return _dateViewFormat;
}
