If prompt, confirm, alert or window.open are not good enough then JavaScript dialog box can be considered as an alternative choice. This dialog box is emulated with two DIV elements. First DIV overlays whole page (transparency is styled to 60%) while second DIV is positioned at the page center. That’s nothing new but JavaScript code is short, well commented and closed in its own namespace (for easier integration with other frameworks).
Try demo and see how to call REDIPS.dialog.show() method. Here are examples of how JavaScript dialog box can be called:
- Simple dialog
REDIPS.dialog.show(150, 120, ‘Simple dialog’) - Bigger dialog with renamed button
REDIPS.dialog.show(200, 200, ‘Bigger dialog with renamed button’, ‘OK’) - Dialog with two buttons
REDIPS.dialog.show(200, 100, ‘Dialog with two buttons’, ‘Cancel’, ‘Yes’) - Action on second button
REDIPS.dialog.show(200, 100, ‘Action on second button’, ‘Cancel’, ‘Yes|button2’) - Action on both buttons (with parameter on second button)
REDIPS.dialog.show(200, 100, ‘Action on both buttons’, ‘Cancel|button1’, ‘Yes|button2|hello’) - Dialog with image
REDIPS.dialog.show(100, 90, ‘/path/img1.png’) - Dialog with more images
REDIPS.dialog.show(100, 90, ‘/path/img1.png,/path/img2.png,/path/img3.png’) - Dialog with more images and text
REDIPS.dialog.show(100, 90, ‘Hello!|/path/img1.png,/path/img2.png,/path/img3.png’) - Dialog with image and text
REDIPS.dialog.show(300, 160, ‘Have a nice day!|/path/spider1.png’) - Dialog with image, text and action on second button
REDIPS.dialog.show(300, 160, ‘Delete image?|/path/spider2.png’, ‘Cancel’, ‘Yes|button2’) - YouTube example
REDIPS.dialog.show(640, 390, ‘youtube:2JWaWfKc5Vg’)
There is option to display one or two buttons in dialog box. After button is pressed, dialog box will be closed. That is the simplest scenario. For each button you can define label, function name and parameter. Labels, function names and parameters are separated with “|”. If text ends with jpg, jpeg, gif or png, script will prepare IMG tag and display one or more images. REDIPS.dialog.show() has fade in / out overlay from 0% to 60%. There is option to change maximum overlay transparency and fade speed. Dialog box should be initialized while settings of maximum transparency and fade speed are optional. Here is example of simple configuration:
window.onload = function () { REDIPS.dialog.init(); // initialize dialog REDIPS.dialog.opHigh = 40; // set maximum transparency to 40% REDIPS.dialog.fadeSpeed = 18; // set fade speed (delay is 18ms) //REDIPS.dialog.close_button = 'x'; // close button definition };
If input value of REDIPS.dialog.show() is in format youtube:{youtubeId} then dialog box will display YouTube video. YouTube HTML code can be changed with public property REDIPS.dialog.youtube. The following example shows how to display generated HTML from server side:
REDIPS.dialog.show(520, 400, 'server.php');
In this case, REDIPS.dialog will load server.php page via AJAX and display HTML code inside dialog. In short, if second parameter defines PHP, HTML or ASPX page then dialog will ask Web server for content using AJAX.
Two event handlers can execute custom JS code in moment of displaying and closing dialog. Here is code snippet (full JS code can be found inside example00 folder of redips4.tar.gz package):
// event handler called after dialog is displayed REDIPS.dialog.event.displayed = function () { document.getElementById('message').innerHTML = 'Dialog displayed'; }; // event handler called after dialog is closed REDIPS.dialog.event.closed = function () { document.getElementById('message').innerHTML = 'Dialog closed'; };
It’s also possible to display custom HTML in two steps. First, custom HTML should be defined and then displayed. If REDIPS.dialog.show() method detects “html” as parameter then custom HTML will be displayed:
// how to define custom HTML REDIPS.dialog.html('<strong>This is my HTML</strong>'); // how to show custom HTML REDIPS.dialog.show(200, 200, 'html'); // buttons definition are optional, if needed they can be defined as well REDIPS.dialog.show(200, 200, 'html', 'Close');
Package redips4.tar.gz contains all examples, source code and compressed lib prepared for production.
Great class. One question though, how do you pass a variable into the functions executed after the button press?
For example this will ofcourse cause an error:
onclick=”REDIPS.dialog.show(400, 100, ‘Test ?’, ‘Cancel’, ‘OK|askData(‘test’)’);return false”
In a nutshell, the question is how to pass the word test as a variable to the functions Askdata()?
@Alexander – Script is fixed. Now it should be able to change speed and opacity level.
@Vladimir – I added third element to define function parameter. You can call dialog this way:
onclick=”REDIPS.dialog.show(400, 100, ‘Test ?’, ‘Cancel’, ‘OK|askData|test’);return false”
Parameter value “test” will be passed to the function “askData”. Don’t forget to define input parameter:
Cheers!
Great!
But one question: Is it possible to have a dialog with text field for user input?
Great class! Thanks for sharing it!!
Great class – thanks for sharing. I just came across two issues that almost drove me insane when I tried to incorporate it into one of my projects (xhtml strict):
1. The input button (redips-dialog.js, line 171) threw an error in FF and Chrome, until I added a closing tag (/>).
2. The CSS styles were never applied, until I changed the respective tags in redips-dialog.js to lowercase.
Maybe this helps others.
Cheers!
@cs0815 – Thanks to your suggestions, REDIPS.drag library is improved. Changes are saved to the redips4.tar.gz package. This will certainly help and thank you once again. Cheers!
Hi,
Great class thanks for sharing.
Suggestion :
visibilty function should check if the browser agent is ie6 than only should it hide all the iframes, selects and object. otherwise it created a problem with the hidden selects which were only visible based on the interaction from the user in my application.
Regards,
Adnan Akbar
Hi,
Nice class thanks for sharing
I have a question,how to submit the form on click on a button in dialog box.
Actually I am calling REDIPS.dialog.show(200, 100, ‘Action on second button’, ‘Cancel’, ‘Yes|button2’);return false onsubmit or onclick of a submit button,but the form is not submitting.
@adnan – You’re right, visibility() method could be completely removed from REDIPS.dialog class because IE6 support is no needed any more. Please see The Internet Explorer 6 Countdown.
@vikram – Maybe you can call button2() function and inside button2() put form submission. Something like this:
Hi,
How to show dialog from html page.
REDIPS.dialog.show(640, 390, ‘demo.php’)
@kungto – New version 1.5.0 has option to show dialog from HTML (or PHP) page. Content of HTML page is closed within iframe and displayed in dialog box. Just download latest redips4.tar.gz package and try. Thank you!
hi
i’ve made login form with iframe dialog, but when click submit button, iframe is still there…
i want to hide iframe and dialog when i click submit button and load new page…
now: http://prntscr.com/22f3d
i want this: http://prntscr.com/22f3n
how to do it?
@Nikola – I suppose that your form should have defined target property like:
This way result from submit.php will not be displayed inside iframe of dialog box but inside of the main window. After submitting form, dialog box will dissapear because new page will be loaded.
Hi, i’m trying to include your class on my javascript web app but i have a problem on close button rendering: instead of a X i receive strange fonts
This is the wrong rendering: http://imageshack.us/photo/my-images/217/mozillafirefox201108101.png/
How can i fix this?
Thanks for your work :)
Solved!! I don’t know how but now it works :)
@Emanuele – I’m glad you solved the problem and thank you for using REDIPS.dialog library.
Cheers!
Hi,
when I’m trying use redips dialog with niceforms (http://www.emblematiq.com/lab/niceforms/) javascript catch exception, and niceforms doesn’t work.
If I delete excerpt:
niceforms works correct.
Anyone have any idea how to use redips dialog with niceforms?
@Marcin – The problem is in window.onload. If you open main.js, you will find line:
REDIPS.drag also needs to be initialized, so dialog demo uses the same event for initialization. In your case, first definition of window.onload is overwritten with second. Solution to this problem is to move REDIPS.dialog initialization to the main.js file. Here is how:
… and don’t forget to delete window.onload initially used by REDIPS.drag lib. Your page should have only one definition of windows.onload event.
@dbunic – thx for solution. I’m changed init function in niceforms.js:
and I deleted:
from header of my page.
Now it’s working gr8.
I got what Emanuele got —> http://imageshack.us/photo/my-images/217/mozillafirefox201108101.png/
How do I fix it?