Class ViewManager : onGetHTMLForProgrammeInfoPopupDescription Event


String onGetHTMLForProgrammeInfoPopupDescription( Programme prog )

Summary

Called to obtain the HTML text that appears in the middle, scrolling, region of an InfoPopup. This area normally contains programme description and cast information.


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 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
  • ViewManager : onGetHTMLForProgrammeInfoPanel


    Requirements

    Build 1067