If you have played around with the dialog widget in JQuery UI you may have noticed a couple of things.
- Like a lot of javascript libraries it messes with the DOM (Document Object Model) at what might be unexpected times and therefore it does not play well with SharePoint.
- It breaks the web part verb menu (the 'edit' drop down menu)
Actually it (like a lot of the JQuery UI widgets) is an incredibly powerful tool to your client side arsenal, and as long as you adhere to some best practice it will work perfectly happily within SharePoint, or any other ASP.Net site.
1. It messes with the DOM.
Specifically it does not play well with the ASP.Net page post back model. This is fairly well documented across the interweb (although the actual solution is not).
The dialog widget is initiated via code similar to this:
$('#dialog').dialog();
When JQuery sees this it initiates the widget and actually moves your entire div tag to the root of the DOM (see screenshot below). Therefore outside of the form tag. So any ASP.Net controls which you may have in this div will not be included in any post backs therefore none of their events will fire.
2. It breaks the web part 'edit' menu.
Actually it doesn't. But if you have followed some code examples that are out there then it might. Essentially it may mess with this if your call to initiate the dialog is happening before the page has entirely loaded.
Fortunately JQuery has a handy way of ensuring that no matter where your code is defined on the page it will only run when the page has loaded up. This is simply accessed using:
$(document).ready();
Any function supplied to this method will be loaded in memory and run when the page has finished loading. How great is that!
As long as you follow these two items of best practice you should have no problems using the JQuery dialog widget from within SharePoint.
Code
When you want to show it then call openModalDialog and optionally (because JQuery will render a nice close button in the top tight hand corner) you could call closeModalDialog to close it.
Note: If you are using this within a web part then make sure your selector (the id of your div) is unique to your web part in case you have multiple web parts on the same page.
function initiateModalDialog(selector) {
//initiates the dialog when the page has finished loading
$(document).ready(function() {
$('#' + selector).dialog({
autoOpen: false,
bgiframe: true,
draggable: false,
width: 600,
resizable: false,
modal: true,
show: 'slide'
});
});
}//Opens the selected div as a modal dialog
function openModalDialog(selector) {
//Opens the dialog
$('#' + selector).dialog('open');
//Appends the dialog to the ASP.Net form to allow postbacks
$('#' + selector).parent().appendTo($("form:first"));
}
//Closes the selected div dialog
function closeModalDialog(selector) {
$('#' + selector).dialog('close');
}
Links
JQuery UI dialog widget documentation