search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Resource-Bubble for java scheduler

Asked by Erik
12 years ago.

Hello again,

Im trying to figure out how to set resource-bubbles in my java-scheduler. Event bubbles where fine, but DayPilotScheduler.java does not seem to have a method onResourceBubble(ResourceBubbleArgs ra).

Is this a missing feature? Or is it supposed to be implemented differently than EventBubbles?

Answer posted by Dan Letecky [DayPilot]
12 years ago.

Erik,

The resource bubble is now implemented in DayPilot Pro for Java.

Example:

Default.jsp
dps.resourceBubble = new DayPilot.Bubble();
DpsServlet.java
@Override
public void onResourceBubble(ResourceBubbleArgs ea) throws Exception {
  ea.setBubbleHTML("Resource details loaded from the server. " + ea.getId());
}

See also:

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.