From: Ronald B. <rb...@rb...> - 2014-12-19 21:14:30
|
>Not its not a new tab in browser. Its an dialog box and not an alert. > As far as i know, the concept of 'dialog box' is not available in html. Can you please make clear, what kind of 'dialog box' you are talking about. There are serveral options: * the javascript confirm() command (res=window.confirm(question);) * javascript window.open() that opens a different browser window (usually a small one) * by using some kind of js library that does some js/css/iframe magic to simulate a (modal) dialog (like this: http://livedemo.exadel.com/richfaces-demo/richfaces/modalPanel.jsf#) Additionally it is a good idea, to dump the current page (asXml) after each step into a separate file, to have a visual id of the current situation. rbri |