我有一个 xhtml 页面
<p:outputPanel>
<p:outputLabel id="temp1"
for="temp11" value="Start Date:" />
<p:calendar id="startDateId"
widgetVar="startDateFromVar" title="#"
showOn="button" disabled="true"/>
</p:outputPanel>
豆
private String date;
/**
* @return the Date
*/
public String getDate() {
date = "11/10/2012 19:15";
return date;
}
/**
* @param Date the Date to set
*/
public void setDate(String ate) {
this.date = date;
}
如何在 xhtml 中显示日期?我一直在 p:calendar
value=#{bean.date}中添加这一行
但它没有显示日期和日历图标。
任何帮助,将不胜感激。