Lightbox Header Text

I’ve looked through the site, and as far as I know, I haven’t bee able to find what I need - any help will be greatly appreciated (as I need it). What is the real difference between an event’s text and details?

Is there a way to specifically change the header text of the Lightbox of an event? Is there a way to change this without also changing the value of the textarea of the “Description” in the Lightbox? It seems that both values come from the event’s text (I’m not sure where the event’s details ever come into play.)

scheduler.templates.event_bar_text is similar to what I want, but for Lightbox rather than the main scheduler interface.

Thanks a bunch!

Header line of lightbox is using event_header and event_bar_text templates. So while it possible to customize it , it will affect view of events as well.

but for Lightbox rather than the main scheduler interface.
You can try the next

lightbox_render = false; scheduler.attachEvent("onBeforeLightbox", function(){ return lightbox_render = true; }); scheduler.templates.event_bar_text=function(start,end,ev){ if (lightbox_render){ lightbox_render = false; return "custom"; } else return ev.text; }

Thanks Stanislav! Everything I needed and more. Really appreciate it