3.2.0

Header enumeration

How would I go about enumerating header objects? I've been surfing through the documentation but can't seem to figure this one out.

Thanks in advance.

Chad
February 17,
You know, I do this all the time. Spend hours trying things then finally post to the forum for help, only to find my solution moments afterwards....

var headersDiv = document.getElementById(obj.getId()+".layout/top");
var offsetObj = headersDiv;
var offsetX = 0;
while(offsetObj.offsetParent.tagName!='BODY') {
offsetX += offsetObj.offsetLeft
offsetObj = offsetObj.offsetParent
}
var headers = headersDiv.childNodes;

Chad
February 17,

This topic is archived.

See also:


Back to support forum