please tell me how do i get modal dialog without ok button...?
+1
A:
Extend or use the existing DialogBox class and style it as you wish.
public class ExtendedDialogBox
extends DialogBox
{
public ExtendedDialogBox(...)
{
// Modal mode to true
super(false, true);
...
Drejc
2010-01-22 10:03:10