Dialog Windows in UI (User Interface)

Using XMLNuke is possible open a dialog window inside the XML. This dialog can be opened automatically or fired by a button, link or image.

You can put the contents here
Dialog Window opened automatically
<uialert type="modaldialog" name="cxdialog" title="Title">
   <button text="Ok">
      window.location='http://www.byjg.com.br/';
   </button>
   <button text="Cancel">$(this).dialog('close');</button>      
   <body>Text</body>
</uialert>
This is a modal dialog. It is possible create a simple dialog (non-modal).
Dialog window opened by a button click
<uialert type="modaldialog" name="cxdialog2" title="Title" 
   openaction="button" 
   openactiontext="Click here to open it">

   <body>Text</body>
</uialert>

You can show alert and warning using BOX inside your document using the types BoxAlert and BoxInfo

Alert Box
<uialert type="boxinfo" name="cxdialog3">
    <body>Text</body>
</uialert>

See XML of this page.