Class ViewManager : onGetHTMLForProgrammeInfoPanel Event


String onGetHTMLForProgrammeInfoPanel( Programme prog )

Summary

Called to obtain the HTML text that appears in a the Description Pane at the bottom of the screen.


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 Description Pane for the current programme.


Examples

var vm = app.getViewManager();

// Override our ViewManager event
vm.onGetHTMLForProgrammeInfoPanel = function( prog )
{
return "<b>" + prog.name + "</b><br><hr size='2'>" + prog.description;
};


See Also

  • Programme
  • ViewManager : onGetHTMLForProgrammeInfoPopupDescription
  • ViewManager : onGetHTMLForProgrammePopupAlertDescription


    Requirements

    Build 1065