Пример #1
0
 @Override
 public void iniRowAction(Row row) {
   MenuLogList log = (MenuLogList) row.getValue();
   SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
   if (log.getDdate() != null) {
     BillLabel label = (BillLabel) row.getFellowIfAny("ddate");
     label.setValue(dateFormat.format(log.getDdate()));
   }
   if (log.getLdate() != null) {
     BillLabel label = (BillLabel) row.getFellowIfAny("ldate");
     label.setValue(dateFormat.format(log.getLdate()));
   }
 }