jQuery UI Dialog for ASP.NET 3.5 1

Its a bit tricky when you want to use jQuery UI components in ASP.NET projects. There are some things that are not aligned between the two technologies, even though one is client side and the other is server side.

For starters both have their own Ajax scripts, so when incorporating jQuery UI components on a page you would have to decide which script (or better workflow) to use. I decided to go along with the ASP.NET way so as to keep working in the same way we did with the rest of the pages. The drawback is that the jQuery way is much more efficient.

Another consideration is whether to use ASP.NET input components (including custom components), or use standard HTML Inputs (like the default buttons in a jQuery UI Dialog form). In the case when you want to do something on the browser like run a javascript function, its best to go with HTML inputs, but if you want to keep using the ASP.NET workflow, you better go with the ASP.NET components.

Having these considerations in mind we want to create a component that will easily display a jQuery UI dialog with data from the server after an Ajax request. The data within the dialog can be displayed using any ASP.NET UI component, so as to be able to incorporate the new functionality with existing code and to allow the developers to work the same way they always did. For example if a system uses a custom calendar component that was created by the developers, it is already ready to be displayed with a jQuery UI Dialog without changing the code. All that is needed is to include the code to be displayed in a <div>. Here is an example of what will be needed in the aspx page:

  1. <div id=”modalDiv” class=”modalPopup” style=”display: none;”>
  2. ANYTHING
  3. </div>
  4. <D:jQueryUIDialog runat=”server” HasCloseButton=”true” HasTitle=”true” Title=”Dialog Title” TargetDiv=”modalDiv” RedirectOnClose=”false” ID=”jQUIDialog” />

 

The custom component itself is not that big of a deal either. The key is the function that will load the dialog and some parameters such as the id of the target <div>. The Load function will have to create the javascript to create and display the dialog. In the following example code the component uses the “TargetDiv” parameter to define the div to be used for the dialog, “Title” and “HasTitle” to define the dialog’s title and “RedirectOnClose” and “RedirectUrl” to define whether to redirect to another page when close is clicked.

  1. sStart = “$(function () {“ & _
  2. ”    “ & _
  3. ”    $(‘#” & _TargetDiv & “‘).dialog( ‘destory’ );  “ & _
  4. ”    $(‘#” & _TargetDiv & “‘).dialog({ “ & _
  5. IIf(_HasTitle, ” title : ‘” & _Title & “‘,”, “dialogClass: ‘ui-dialog-customDialog’,”) & _
  6. ”        autoOpen: true, “ & _
  7. ”        modal: true, “ & _
  8. ”        resizable: false,  “ & _
  9. ”        draggable: false, “ & _
  10. ”        width: ‘auto’, “ & _
  11. ”        zIndex: 1000 , “ & _
  12. ”    }); “ & _
  13. ”    $(‘#” & _TargetDiv & “‘).parent().appendTo(jQuery(‘form:first’)); “ & _
  14. “}); “
  15. ‘add redirect on close event
  16. If _RedirectOnClose Then
  17. sStart = sStart & ”    $(‘#” & _TargetDiv & “‘).dialog({ “ & _
  18. “close: function(event, ui) {window.location='” & _RedirectUrl & “‘;}” & _
  19. ” }); “
  20. Else
  21. sStart = sStart & ”    $(‘#” & _TargetDiv & “‘).dialog({ “ & _
  22. “close: function(event, ui) {$(this).remove();}” & _
  23. ” }); “
  24. End If
  25. ScriptManager.RegisterClientScriptBlock(Me.Page, Me.GetType, “jQueryDialog”, sStart, True)

Note that the last line registers the javascript code to the page.

Don’t forget to load the jQuery UI scripts on your page. You can download them at their site at http://jqueryui.com/download

 

One comment on “jQuery UI Dialog for ASP.NET 3.5

  1. Reply MaVRoSCy Jun 23,2011 10:26 am

    Edo i microsoft den ekatafere na kami integrate tin dotnet stous browser tis… perimenis na ipostiriksi ke JQuery? 😛

Leave a Reply

  

  

  

This site uses Akismet to reduce spam. Learn how your comment data is processed.