Class ViewManager : onGetHTMLForProgrammeInfoPopupDetails Event


String onGetHTMLForProgrammeInfoPopupDetails( Programme prog )

Summary

Called to obtain the HTML text that appears in the top, non-scrolling, region of an InfoPopup. This area normally contains programme start information and channel details.


Parameters

ParameterDescription
Programme prog The programme object for the current programme.


Returns


Return the string, with HTML formatting that you wish to appear in the InfoPopup non-scrolling region for the current programme.


Examples

var vm = app.getViewManager();

// Override our ViewManager event
vm.onGetHTMLForProgrammeInfoPopupDetails = function( prog )
{
return "<b>" + prog.name + "</b>";
};
vm.onGetHTMLForProgrammeInfoPopupDescription = function( prog )
{
return prog.description;
};


See Also

  • Programme


    Requirements

    Build 1067