Package com.googlecode.wicket.jquery.ui.calendar

Examples of com.googlecode.wicket.jquery.ui.calendar.CalendarEvent


  @Override
  protected List<? extends CalendarEvent> load() {
    List<CalendarEvent> list = new ArrayList<CalendarEvent>();
    for (Appointment a : Application.getBean(AppointmentDao.class).getAppointmentsByRange(WebSession.getUserId(), this.getStart(), this.getEnd())) {
      CalendarEvent c = new OmCalendarEvent(a.getId().intValue(), a.getTitle(), a.getStart(), a.getEnd());
      list.add(c);
    }
    return list;
  }
View Full Code Here

TOP

Related Classes of com.googlecode.wicket.jquery.ui.calendar.CalendarEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.