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

Event Bubble render client side

Asked by Raj
12 years ago.

hai support team,

How to event bubble render in javascript, Now we are using OnRenderContent server side. its very slow, so we need change to client side. How is it possiple?

regards
raj

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

It's possible to set the bubble HTML in advance so it isn't loaded from the server using BeforeEventRender event handler (use e.StaticBubbleHTML property).

    protected void DayPilotMonth1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.Month.BeforeEventRenderEventArgs e)
    {
            e.StaticBubbleHTML = "Event details";
    }

In DayPilot Month (http://www.daypilot.org/month.html), this features is available since build 6.5.2999.

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.