5,276,801 members and growing! (16,693 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Advanced

Modal Dialog - enhanced

By volkan.ozcelik

In this article, we will try to generate a draggable DHTML layer that loads data from an external URL via XMLHTTP connection. This is an enhanced version of my previous Draggable Layer article, hence it addresses additional issues that are not present in the former article.
Windows, .NET, Visual Studio, ASP.NET, Dev

Posted: 2 Jun 2006
Updated: 8 Jun 2006
Views: 74,775
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
31 votes for this Article.
Popularity: 6.40 Rating: 4.29 out of 5
1 vote, 3.2%
1
0 votes, 0.0%
2
8 votes, 25.8%
3
3 votes, 9.7%
4
19 votes, 61.3%
5
Note: This is an unedited contribution. If this article is inappropriate, needs attention or copies someone else's work without reference then please Report This Article

Sample Image - ModalDialogV2.gif

Introduction

This article can be considered as a follow up to my former Modeling a Draggable Layer and Loading Dynamic Content to it via XML HTTP article. Have a look at it, if you have not done already so that you can catch up faster.

In this article, we will try to

  • Create a cross-browser, draggable DHTML Modal Dialog
  • Send an AJAX request using HTTP-POST.
  • Get the response and display it inside the modal dialog

And best of all, we will do all these in less than 20 lines of code,  with the help of sardalya API.

Please note that the API enclosed in this article's source archive is a rather simplified version of sardalya. You can visit sardalya's web site for the latest full version of it.

Before starting, you may want to see the final result it in action first.

Creating the View

The HTML of our ModalDialog is fairly simpe:

<div id="ModalBG"></div>
 
<div id="DialogWindow">
  <div id="DialogHeader">
    <span id="DialogTitle">Title comes here</span>
    <img id="DialogActionBtn"  src="icn_close.png" alt="close icon" title="" />
  </div>
  <div id="DialogIcon"><img id="DialogIcon" src="icn_alert.png" alt="alert icon" title="" /></div>
  <div id="DialogContent">...</div>
</div>

"ModalBG" is a layer that is placed between the page content and the ModalDialog window so that we prevent accidential clicks on other page elements and in the same time put some visual emphasis on the ModalDialog by fading the page in the background.

The CSS

To make our "DialogWindow" layer resemble an actual modal dialog, we need some CSS tweaks:

Master.css
 
#DialogWindow
{
 border: 1px #FFFFFF outset;
 width: 550px;
 display: none;
 background: #FFFFFF;
 z-index: 1000;
 position: absolute;
 top: 0;
 left: 0;
}
 
#DialogContent
{
 float: right;
 margin-right: 10px;
 margin-bottom: 10px;
 margin-top: 24px;
 width: 450px;
 display: block;
 font-size: 90%;
}

 
#DialogIcon
{
 padding: 10px;
 float: left;
}
 
#DialogHeader
{
 border-bottom: 1px #00449E outset;
 background: #00449E;
 text-align: right;
}
 
#DialogTitle
{
 float: left;
 padding: 8px;
 color: #FFFFFF;
}
 
#DialogActionBtn
{
 cursor:pointer;
}

And we need an "Opacity.css" for transparency support:

Opacity.css
 
#ModalBG
{
 width:100%;
 display:none;
 background-color:#333333;
 position:absolute;
 top:0;
 left:0;
 height:100%;
 z-index:999;
 opacity:.40;
 filter:alpha(opacity=40)
}

With the help of this CSS, our boxes will pretty much look like a Modal Dialog, except for certain browsers:

Be Kind to Opera

I hear you say "Why am I to be kind to Opera all the time? why is never Opera kind to me?!" and I truly understand you :) But let us be kind to Opera once again:

To make our transparent background work on Opera we need several more CSS tweaks:

Master.css
 
/* transparency support for Opera */
.modalOpera
{
 background-image: url("maskBg.png") !important;
}

That's it! Opera does not understand CSS transparency, but it fully supports .png transparency, therefore a transparent mask as a background will make our ModalDialog work equally good in Opera.

There is one remaining issue here, we need to selectively apply this class only if and only if the user agent is Opera. That is other browsers, such as Mozilla, does not require this transparency hack and we should not use "modalOpera" class if our user agent is one of them. We will address this issue in a second.

The Script

First of all we need to prepare the Modal Dialog at page load:

 window.onload=function()
 {
  /* Sweep unnecessary empty text nodes. */
  DOMManager.sweep();

  /*
   * Attach supporting css bind required
   * classes for transparency support in Opera.
   */ 
  addExtensionsForOpera();
 
  /* Attach opacity css. */
  attachOpacityCSS();
 
  /* Adjust height. */
  adjustHeight();

  /* Create the modal dialog */
  g_Modal=new ModalDialog("ModalBG","DialogWindow",
   "DialogContent","DialogActionBtn");
 

  /* Bind an event listener to double-click event. */
  EventHandler.addEventListener(document,"dblclick",document_dblclick);



/* Re-adjust height on window resize */
EventHandler.addEventListener(window,"resize",window_resize); };

sweep is a utility method of sardalya's DOMManager object. It removes empty text nodes from the <CODE>DOM structure.

Now let us look at other methods one by one

 function addExtensionsForOpera()
 {
  /* classes for opera */
  var ModalBG=new CBObject("ModalBG").getObject();
  if(typeof(window.opera)!="undefined")
  {
   ModalBG.className="modalOpera";
  }
 }

As seen, we only append "modalOpera" className to the "ModalBG" if the user agent is Opera.

Note that we do not sniff the user agent (navigator.userAgent) but do an "object detection" instead (window.opera).

Browsers love to fool scripts by sending false user agent strings and therefore object detection is the way to go. Although details of it is the subject of an entire article, I can say that browser sniffing is soo '90s. As a rule of thumb always use object detection.

Then comes attach opacity css piece:

 function attachOpacityCSS()
 {
  /*
   * CSS for opacity support
   * Note that this can be directly added to the body.
   * If you do not care about blindly adhering to standards
   * you can directly include the rules into Master.css
   *
   * Do I care? Yes and No.(visit http://www.sarmal.com/Exceptions.aspx
   * to learn how I feel about it).
   */
    var opacityCSS = document.createElement("link");
    opacityCSS.type="text/css";
    opacityCSS.rel="stylesheet";
    opacityCSS.href="Opacity.css";
    document.getElementsByTagName("head")[0].appendChild(opacityCSS);
 }

And height adjustment:

 function adjustHeight()
 {
  /* get the available height of the viewport */
  var intWindowHeight=WindowObject.getInnerDimension().getY();
  var dynModalBG=new DynamicLayer("ModalBG");
  var intModalHeight=dynModalBG.getHeight();
 
  /*
   * if modal background's height is less than the viewport's 
   * available height, increase its height.
   */
  if(intModalHeight<intWindowHeight)
  {
   dynModalBG.setHeight(intWindowHeight);
  }
 }
Then we create the modal dialog in just a single line:
  g_Modal=new ModalDialog("ModalBG","DialogWindow",
   "DialogContent","DialogActionBtn");

"ModalBG" is the ID of transparent background, "DialogWindow" is the ID of modal dialog container, "DialogContent" is where messages is displayed when calling the show method of ModalDialog, and "DialogActionBtn" is the ID of the close button.

And finally we attach a double-click event to the document which will trigger an AJAX action:

  /* Bind an event listener to double-click event. */
  EventHandler.addEventListener(document,"dblclick",document_dblclick);

Now let us have a look at document_dblclick method:

 function document_dblclick(evt)
 {
  /* create an AJAX request */
  var ajax = _.ajax();

  /*
   * Note that _.ajax(); is a shorthand notation 
   * for new XHRequest();
   * Visit http://sardalya.pbwiki.com/Shortcuts for details.
   */

  /* 
   * You can add as many fields as you like to the post data. 
   * Normally the server will use this data to create an
   * output that makes sense which may be an XML, a JSON String
   * or an HTML String.
   */
  ajax.removeAllFields();
  ajax.addField("name","John");
  ajax.addField("surname","Doe");

  /* These events will be fired when server posts back a response. */
  ajax.oncomplete=ajax_complete;
  ajax.onerror=ajax_error;

  /* Set a default waiting message. */
  g_Modal.show("Fetching data... Please wait...");

  /*
   * Disable close action if you want to force the user 
   * to wait for the outcome of the AJAX request.
   * Although it is generally not recommended 
   * this may be necessary at certain times.
   */
  g_Modal.disableClose();

  /* Post data to the server. */
  ajax.get("externalScript.html");

  /* Stop event propagation. */
  new EventObject(evt).cancelDefaultAction();
 }

The comments should be self-explanatory.

And finally the two methods that are triggered after the server's post back.
 /* Triggered when a successful AJAX response comes from the server.*/
 function ajax_complete(strResponseText,objResponseXML)
 {
  g_Modal.show(strResponseText);
  
  /* Re-activate close button. */
  g_Modal.enableClose();
 }

 /* Triggered when server generates an error. */
 function ajax_error(intStatus,strStatusText)
 {
  g_Modal.show("Error code: ["+ intStatus+ "] error message: [" + 
   strStatusText + "].");

  /* Re-activate close button. */
  g_Modal.enableClose();
 }

That's it!

What about those nasty SELECTs ?

ModalDialog object internally handles it, by replacing them with SPAN elements with class "modalWrap" whenever ModalDialog opens. This sorts out the well known "SELECTs bleed through my top layer" issue.

Here is the CSS of it for the sake of completeness:
.modalWrap
{
 border: 2px #ffffcc inset;
 background:#ffffcc;
 margin:5px;
}

You can add as many rules as you like to it. The more the SPAN resembles a SELECT element, the better (you can apply width and line-height, set display to inline-table... etc, I did not change it too much to keep it simple)

For those who wonder how the replacement of those SPANs and SELECTs are done, the corresponding private method is given below. You can observe the source code of the article's zip file for more details.

In the former version, we were simply hiding the SELECTs by setting their CSS visibility to hidden.  Having tested it in real-life scenarios, I saw that the "all of a sudden" dissappearance of SELECTs was annoying to some of the users.

imho, transforming the SELECTs is much better than hiding them completely.

... And no, I do not want to use IFRAMEs :)

Here follows the code:

_this._replaceCombos=function(blnReplaceBack)
{
 var arSelect = document.getElementsByTagName("select");
 var len=arSelect.length;
 var objSel=null;
 var strNodeValue="";
 var objSpan=null;
 var o=null;

 if(!blnReplaceBack)
 {
  blnReplaceBack=false;
 }
 
 for(var i=0;i<len;i++)
 {
  objSel=arSelect[i];
  strNodeValue=objSel.childNodes[objSel.selectedIndex
  ].childNodes[0].nodeValue;

  objSpan=new CBObject(objSel.id+"_ModalWrap");
  if(objSpan.exists())
  {
   o=objSpan.getObject();
   o.parentNode.removeChild(o);
  }

  objSpan=document.createElement("span");
  objSpan.id=objSel.id+"_ModalWrap";
  objSpan.appendChild(document.createTextNode(strNodeValue));
  objSpan.className="modalWrap";
  objSel.parentNode.insertBefore(objSpan,objSel);

  if(blnReplaceBack)
  {
   new DynamicLayer(objSpan).collapse();
   new DynamicLayer(objSel).expandInline();
  }
  else
  {
   new DynamicLayer(objSpan).expandInline();
   new DynamicLayer(objSel).collapse();
  }
 }
};

Conclusion

In conclusion, we modeled and created a draggable DHTML Modal dialog, established an AJAX connection to an external script; we did some cross-browser tweaks to make our application work on as many browsers as possible, and we did some OO coding.

And as always,
Happy coding!

History

  • 2006-06-02 : Article created.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

volkan.ozcelik


Volkan is a java enterprise architect who left his full-time senior developer position to venture his ideas and dreams. He codes C# as a hobby, trying to combine the .Net concept with his Java and J2EE know-how. He also works as a freelance web application developer/designer.

Volkan is especially interested in database oriented content management systems, web design and development, web standards, usability and accessibility.

He was born on May '79. He has graduated from one of the most reputable universities of his country (i.e. Bogazici University) in 2003 as a Communication Engineer. He also has earned his Master of Business Administration degree from a second university in 2006.
Occupation: Web Developer
Location: Turkey Turkey

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 47 (Total in Forum: 47) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralPlease help me...membermonmagallanes0:28 27 Sep '07  
GeneralBug in the convert dropdown JavaScript [modified]memberMike McPhail10:52 14 Aug '07  
GeneralRe: Bug in the convert dropdown JavaScriptmemberMike McPhail11:42 17 Aug '07  
GeneralRe: Bug in the convert dropdown JavaScriptmembervolkan.ozcelik3:40 20 Aug '07  
GeneralLightweight version inchl framework available for download (free)memberinchl6:00 12 Jun '07  
Generalonclickmemberlolik414:31 13 May '07  
GeneralRe: onclickmembervolkan.ozcelik0:38 14 May '07  
GeneralRe: onclickmemberlolik47:49 14 May '07  
GeneralRe: onclickmembervolkan.ozcelik14:46 15 May '07  
QuestionCan't use for comercial purposes??memberchezchez16:07 25 Mar '07  
AnswerRe: Can't use for comercial purposes??membervolkan.ozcelik18:19 25 Mar '07  
GeneralRe: Can't use for comercial purposes??memberchezchez18:49 25 Mar '07  
Generaltriggering off of button...memberinterclubs6:23 13 Feb '07  
AnswerRe: triggering off of button...membervolkan.ozcelik8:30 13 Feb '07  
GeneralRe: triggering off of button...memberinterclubs16:23 13 Feb '07  
AnswerRe: triggering off of button...membervolkan.ozcelik19:26 13 Feb '07  
GeneralTo be mentionedmember18:01 31 Jan '07  
AnswerRe: To be mentionedmembervolkan.ozcelik9:15 2 Feb '07  
GeneralThere seems to be a problem with Buttons on the popupmemberSandeep Adi7:15 28 Dec '06  
QuestionRe: There seems to be a problem with Buttons on the popupmembervolkan.ozcelik11:36 8 Jan '07  
GeneralRe: There seems to be a problem with Buttons on the popupmemberSandeep Adi9:42 9 Jan '07  
GeneralModal Dialog not staying ModalmemberKomil5:49 10 Nov '06  
GeneralRe: Modal Dialog not staying Modalmembervolkan.ozcelik8:56 10 Nov '06  
Questioncross browser?membermikedepetris7:45 17 Oct '06