I am facing an issue where I want to display a popup without the scroll bar showing up. The popup is being displayed using an iframe.
var addPartnerDialog = App.addDialog("AddExistingPartner", 500, 250);
$(addPartnerDialog.getId()).css('overflow','hidden');
var iframe = addPartnerDialog.load('/' + App.getVirtualDirectoryName() + '/PlatformPartner/EditPartner?Type=Add', function () {
iframe.contentWindow.editPartners.initialize(addPartnerDialog);
});
}
The CSS property that is added is not getting applied to the HTML div element. Please help me figure out how to fix this issue.