This callback is called after the server-side page
object and all of its children are created.
Subclasses can override this to add, remove, or modify
items within the page object model, or to provide values
for controls.
This is called in the middle of rendering the tool ribbon.
Subclasses can inject their own content into the ribbon by writing it out in this method.
This content is best wrapped within a single td element.
It can also consist of multiple td elements.
To achieve a fixed position for elements within the ribbon, for a fixed width page you can
use a single enclosing td that contains a table and a single tr,
with td elements inside that single tr that contain your content for the ribbon.
To achieve a fixed position for elements within the ribbon,
for a page whose width varies depending on its contents (thereby stretching the ribbon)
you can use multiple td elements to contain your content and then a final
td element that is empty and has width 40% (or so) to push your contents towards the left
and keep them in their proper locations.
method OnGetRibbonInfo(Output pDisplay As %Boolean, Output pViewIcons As %List, Output pSortOptions As %List, Output pSearchBox As %Boolean, Output pRibbonTitle As %String)
as %Status
Get information to display in the ribbon bar.
method displayChart(current)
[ Language = javascript ]
Switch the chart to the one corresponding to the button clicked (Minute, Hour, Day, Week, Month or Year).
method onlayoutHandler(load)
[ Language = javascript ]
This client event, if present, is fired when the page
is first loaded or whenever it is resized.
If this is called at load time, then load will
be true.
method onloadHandler()
[ Language = javascript ]
This client event, if present, is fired when the page is loaded.
method updateType(current)
[ Language = javascript ]
Update ribbon button styles, disabling 'current' and enabling all others.