BrightSide Workbench Full Report + Source Code
org.turro.elephant.calendar.ElephantCalendar Class Reference
Inheritance diagram for org.turro.elephant.calendar.ElephantCalendar:
Collaboration diagram for org.turro.elephant.calendar.ElephantCalendar:

Public Member Functions

String renderCalendar (String params)
 
String refetchEvents ()
 
String getName ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 36 of file ElephantCalendar.java.

Member Function Documentation

◆ getName()

String org.turro.elephant.calendar.ElephantCalendar.getName ( )

Implements org.turro.marker.IElephantHelper.

Definition at line 54 of file ElephantCalendar.java.

54  {
55  return "calendar";
56  }
Here is the caller graph for this function:

◆ refetchEvents()

String org.turro.elephant.calendar.ElephantCalendar.refetchEvents ( )

Definition at line 49 of file ElephantCalendar.java.

49  {
50  return "if($('#calendar').is(':visible')) { $('#calendar').fullCalendar('refetchEvents'); }";
51  }

◆ renderCalendar()

String org.turro.elephant.calendar.ElephantCalendar.renderCalendar ( String  params)

Definition at line 38 of file ElephantCalendar.java.

38  {
39  try {
40  ElephantMarker marker = new ElephantMarker(Application.getApplication().getConstructor());
41  marker.putAll(new KeyObjectMap(params));
42  return marker.parse("calendar", "fullcalendar");
43  } catch (ParserException ex) {
44  Logger.getLogger(ElephantCalendar.class.getName()).log(Level.SEVERE, ElephantContext.logMsg(null), ex);
45  }
46  return null;
47  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: