Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Content Freeze

As of July 25th, 2023, there is a content freeze on this page.

This function returns the overall height of the Profound UI runtime container based on the absolute position and height of the elements within it.  It is useful in dynamically positioning a footer specified in start.html.

Example:

var footer = getObj("myfooter");  // get a reference to the footer div
var footerTop = pui.getRuntimeContainerHeight() + 20;  // calculate footer top position based on runtime container height
footer.style.top = footerTop + "px";  // assign the new top position
  • No labels