Hello
keep getting null returned on this line:
var getFieldControl = window.parent.document.getElementById("aet_documents");

//Get Value works
var urlName = formContext.getAttribute("aet_documents").getValue();
Also is there a better way to use write this line:
getFieldControl.innerHTML = btnHTML;
btnHTML is comprised of:
var btnHTML = "<a href='javascript: void(0);' onclick=\"window.open(\'" + url + "\', \'windowname1\'); return false;\" style='color:blue;text-decoration:underline !important'>" + description+"</a>";
Thanks for any insight!