Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2019-05-08 11:01 AM
I have created a customobject to show the cross reference record in a modal popup using iframe. popup loads the cross referenced record but I am not able to scroll or change any fields with in the popup.
did anyone tried this? Any help is greatly appreciated
2019-05-08 11:22 AM
Srinivas,
Can you paste the code here? That would help to narrow down the issue.
2019-05-08 12:08 PM
I am passing cross reference record url to below function:
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<script>
function ShowPopup(url)
{
var $dialog = $('<div></div>')
.html('<iframe style="border: 1px; " src="' + url + '" width="100%" height="100%"></iframe>')
.dialog({
autoOpen: false,
modal: true,
height: 625,
width: 800,
title: "Change Risk Profile"
});
$dialog.dialog('open');
}
</script>
2019-05-09 03:32 AM
Srinivas,
Can you add the "Scrolling" property to your iframe and check if that works?
<iframe scrolling="yes" style="border: 1px; " src="' + url + '" width="100%" height="100%"></iframe>