Home » Developer Area » DigiGuide Script » onGetHTMLForProgrammePopupAlertDetails Event
Class ViewManager : onGetHTMLForProgrammePopupAlertDetails Event
String onGetHTMLForProgrammePopupAlertDetails ( Programme prog )
Summary
Called to obtain the HTML text that appears in the top, non-scrolling, region of an Alert window. This area normally contains programme start information and channel details.
Parameters
Parameter Description
Programme prog
The programme object for the current programme.
Returns
Return the string, with HTML formatting that you wish to appear in the Alert window non-scrolling region.
Examples
var vm = app.getViewManager(); // Override our ViewManager event vm.onGetHTMLForProgrammePopupAlertDetails = function( prog ) { return "<b>" + prog.name + "</b>"; }; vm.onGetHTMLForProgrammePopupAlertDescription = function( prog ) { return prog.description; };
See Also
Programme
Requirements
Build 1067