Hello,
I am using the SharePoint editor Lite version, In our project we are using a custom button in the tool bar when the user clicks on it we will be showing the a dialog box
But the window that is shown when the user click on the button is not modal. Please let me know how do I make the window modal.
Thanks & Regards
I am using the SharePoint editor Lite version, In our project we are using a custom button in the tool bar when the user clicks on it we will be showing the a dialog box
| RadEditorCommandList["Report"] =function CustomDialogCommand(commandName, editor, oTool) |
| { |
| var args = editor.GetDialogParameters(commandName); |
| RadEditor1ClientObject = editor; |
| var vindo =editor.ShowDialog( |
| 'Reports/ListReportStore.aspx' |
| , args |
| , 500 |
| , 320 |
| , CustomDialogCallback |
| , null |
| , "Report"); }; |
Thanks & Regards