Message box contains three buttons "Yes" "No" and "Cancel"

Hai,I want to include one pop up message box in a jsp page which contains three buttons "Yes" "No" and "Cancel" . Is it possible to do the same using javascript ?Thanking u ,Kris
[206 byte] By [2569a] at [2007-11-27 9:45:37]
# 1
NO, confirm box gives you OK & CANCEL.
skp71a at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
That means it is not possible to have a box with three buttons, using java scripts. Is there any other solution for this problem? My programme demands three buttons in a message box.
2569a at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
There is indeed no such message box in JS.You've 2 options:1) Simply don't use popup dialogues.2) Write a small HTML/JSP page simulating a message box and open it using window.open() without toolbars.
BalusCa at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
How to design a small window like messagebox using jsp?
2569a at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5
Do you know HTML?
BalusCa at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 6
Ya . I know HTML.
2569a at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 7
Just write HTML accordingly :)
BalusCa at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 8
ok..Thanks...
2569a at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 9
u can even use a <div> with a z-index >0
vinayak_ra at 2007-7-12 23:54:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...