0
比方說,我有一個月的所有日子的列表,我想打印它作爲日曆。我想一個星期在每一行,然後連續突破Datatable每行7個項目
在我下面的例子,我會在每一行一天,像這樣:
這是獲得7天的最佳途徑JSF中每行都是這樣的?
示例代碼:
查看:
<h:dataTable value="#{myController.dayList}" var="day">
<h:column>
<h:outputText value="#{day}"/>
</h:column>
</h:dataTable>
Backbean:
@ManagedBean(name = "myController")
@SessionScoped
public class MyController {
private List <int> dayList;
public MyController()
{
dayList = getAllDaysInMonth();
}
public List <int> getAllDaysInMonth()
{
.....
}
public List <int> getDayList()
{
return dayList;
}
public void setDayList(List <int> dayList)
{
this.dayList = dayList;
}
}
謝謝!我使用primefaces,您的解決方案效果很好!再次感謝! –