Based on an example from another thread I am using the following command to open a dialog window from the link manager:
The problem is that the window behaviors are being ignored and all the controls - refresh, pin, minimize, maximize - are showing.
How do I open the dialog withput the extra controls.
| Type.registerNamespace("Telerik.Web.UI.WindowBehaviors"); function ShowCustomDialog(popupUrl, width, height) { ... var dialogOpener = Telerik.Web.UI.Dialogs.CommonDialogScript.get_windowReference().get_dialogOpener(); |
| dialogOpener.openUrl( |
| popupUrl, argument, width, height, callbackFunction, null, |
| "Menu Selector", true, |
| Telerik.Web.UI.WindowBehaviors.Close + Telerik.Web.UI.WindowBehaviors.Move, |
| false, true); } |
How do I open the dialog withput the extra controls.
