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.
<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>
<uialert type="modaldialog" name="cxdialog2" title="Title" openaction="button" openactiontext="Click here to open it"> <body>Text</body> </uialert>
<uialert type="boxinfo" name="cxdialog3">
<body>Text</body>
</uialert>
See XML of this page.
