1

我正在尝试构建一个用于时间跟踪的 CellTable 小部件。第一列必须以下列形式表示当月的所有天数

Fri, 1
Sat, 2
Sun, 3
Mon, 4
Tue, 5
…

等到月底(28 -31 行)。

我的代码如下所示:

Column<Rec,String> dayColumn = new Column<Rec,String>(new TextCell())
{   
    @Override
    public String getValue(Rec rec) 
    {
        dayNr = DateTimeFormat.getFormat( "EE,d" ).format(new Date());
        return dayNr;    
    }
}; 

table.addColumn(dayColumn, "Date");

所以我只能在所有单元格中看到此列中的今天日期。如何在此列中的每个月(1...28/30/31)在其自己的单元格中获取所有天数?

4

5 回答 5

1

如果您准备了带有 Date 变量的 Rec 项目列表,那将是理想的。

用日期声明一个 Rec pojo

Class Rec{
 Date date;
 //getter and setters.
}

填充 Rec 项目列表

List<Rec> recItems = new ArrayList<Rec>();

Date now = new Date();
int nowMonth = now.getMonth();
int nowYear = now.getYear();
List<Date> listOfDatesInThisMonth = new ArrayList<Date>();
Date beginningOfMonth = new Date(nowYear,nowMonth,1);
Date beginningOfNextMonth = new Date(nowYear,nowMonth+1,1);
Date start = beginningOfMonth;
while(start.before(beginningOfNextMonth)){
 listOfDatesInThisMonth.add(start);
 start = new Date(nowYear,nowMonth,start.getDate()+1);
}
for(Date date:listOfDatesInThisMonth){
 Rec recItem = new Rec();
 recItem.setDate(date);
 recItems.add(recItem );
}

渲染

Column<Rec,String> dayColumn = new Column<Rec,String>(new TextCell())
{   
    @Override
    public String getValue(Rec rec) 
    {
        dayNr = DateTimeFormat.getFormat( "EE,d" ).format(rec.getDate());
        return dayNr;    
    }
};
于 2013-03-05T18:14:19.620 回答
0

像这样的东西??

private static String getMonthsString() {
StringBuffer buffer = new StringBuffer();
Date date = new Date() ;
 int i = date.getMonth();
   if(i==2)//feb {
    for (int j = 0; j < 28; j++) {
       buffer.append(DateTimeFormat.getFormat( "EE,d" ).format( new Date(new Date().getTime() + ((1000 * 60 * 60 * 24*j)))));   
                }
            return buffer.toString(); 

    }
于 2013-03-04T12:28:00.043 回答
0

在单元格表中,每一行都是一条记录。一个月至少有28天。因此,您必须建立至少 28 条记录并在单元格表上执行 setList 或 setData。下面给出了一个简短的代码片段 -

Date currentDate = new Date();

Map<Integer, String> daysMap = new HashMap<Integer, String>();
daysMap .put(0,"Sunday");
.
.
daysMap .put(6, "Saturday");

Map<Integer, Integer> monthMap = new HashMap<Integer, Integer>();
monthMap.put(0, 31);
.
.
monthMap.put(0, 31);

List<Rec> list = new ArrayList<Rec>();

for(int i=1;i <= monthMap.get(currentDate.getMonth());i++)
{
       list.add(new Rec( daysMap.get(currentDate.getDay())+" , "+ i ));
}


Column<Rec,String> dayColumn = new Column<Rec,String>(new TextCell())
{   
    @Override
    public String getValue(Rec rec) 
    {
        return rec.getDayDateString(); // which returns Friday, 1 etc.   
    }
}; 

table.addColumn(dayColumn, "Date");

ListDataProvider<Rec> listDataProvider = new ListDataProvider<Rec>();

listDataProvider.addDataDisplay(table);
listDataProvider.setList( list );
于 2013-03-04T13:39:21.390 回答
0

您可以使用 java.util.Calendar 在服务器端获取每个月的日期

于 2013-03-04T19:54:16.817 回答
0

显示日期的可滚动列表是可怕的可用性。我建议改用 DatePickerCell。它使用日期选择器,因此用户只需单击日期即可选择它。

于 2013-03-05T04:04:14.433 回答