Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..

cancel
Showing results for 
Search instead for 
Did you mean: 

Editable record popup

srinivasulugaja
Contributor III

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

3 REPLIES 3

Arun.Prasad
Advocate II

Srinivas,

 

Can you paste the code here? That would help to narrow down the issue.

srinivasulugaja
Contributor III

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>

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>