Hi guys.
On the click of a CRM ribbon button I am opening up a custom page in a modal dialog.
I'm opening it via javascript and it does open as a modal but the full screen button is there which I need to turn off.
Any idea how to do this?
I am using the javascript navigation options below & had thought that the allowFullScreen property set to false would do the trick but it doesn't.
Thank you in advance.
var navigationOptions =
{
target: 2, // 2 = dialog
position: 1, // center
width: { value: 600, unit: "px" },
height: { value: 400, unit: "px" },
title: "Select Contacts",
allowFullScreen: false
};