modal-dialog

Showing datepicker over Modalbox

Im trying to show a datepicker inside a Modalbox. I tried almost everything. Changed the zindex to a higher number then the modalbox, also loaded the datepicker after showing the modalbox, but nothing. Any known issue with this? Suggestions? Thanks ...

.net accordion control not working after jquery modal popup

Hi. I have a strange problem on a web page. On this page, there were (.net ajax) accordion control and modal popup extender. For some reason modal popup installer would not work properly so I have replaced with jQuery modal. (using jQuery-ui). The problem is that after the jquery modal is open( or closed) Accordion control will not f...

showmodal return value problem after postback

I have a showmodal dialog that return value to a parent page. all works fins beside when i have postback in the aspx dilaog page, the dialog return null. I try adding . The problem apeear only on chorme and safari, on IE 8 and FF its work fine. Thanks. ...

recaptcha within modal window (fancybox)

Hi, I am trying to load a form through ajax within fancybox. It works great, everything works fine. I used the recaptcha (rails) plugin and got the captcha on the form. Now when the fancybox loads, its getting redirected to an empty page with only captcha on it. I assume this is some problem with iframe and modal window? Has anyone ...

Modal popup errors block MDI parent GUI updates

I am making a windows application which communicates with a microcontroller. Sometimes, communication error occurs which need to be flagged to the user. For instance, if the cable gets unplugged or the microcontroller loses power. I've been struggling with this for awhile now, i'm back to my original solution. The original solution ...

system modal dialog in GTK

Hi Experts, I am trying to create GtkDialog with system wide Modal property i.e. when the dialog is opened no other window should get focus. There is an option for making it modal using GtkDialogFlag but that is not system wide modal. Please I need your help urgently. Kind Regards, -Durgesh O Mishra ...

How do you close a modal window from it's parent?

Hi all, Is it possible to close a modal window from it's parent? It is a little hard even to try to do this. Basically, I am opening a non-modal window. From that non-modal window the user might some times open a modal window. Now suppose I close the non-modal window... I would like the modal subwindow to close also. How can this b...

ASP.NET Button to update properties and show jQuery Modal

Hello, I have the following ASP.NET code: <div id="panelIssue" runat="server" style="width: 450px; height: 320px;"> <gsl:IssueUC ID="ucIssue" runat="server" OnItemSaved="ucIssue_ItemSaved" OnItemCancelled="ucIssue_ItemCancelled" /> </div> and then have an asp:Button on the page that simply call some methods and ...

How to completely stop the jQuery UI dialog from opening if the tab is shifted?

Hi, I want to open a jQuery UI dialog box (whose content is loaded via ajax) within a jQuery UI tab. Scenario: I have two tabs in the page. If I click on the overlay link (for the modal dialog) in one tab, and during the loading of the dialog (which is not yet visible - an ajax call is happening), I click on the other tab, I want the ...

Changing location within Modal Dialog

Hi, In a simple web app I'm opening a modal window which loads a jsp using window.showModalDialog. I have the following questions: I have a button in the JSP within the modal dialog. It has a click handler that says: document.location.href = 'http://www.google.com'. Problem is, when the button is clicked, the parent window's location ...

Pop-up window or modal box?

I'm designing a mission-critical web application and I was wondering if it is best to have users enter in data via browser pop-up windows or javascript modal boxes? The absolutely critical aspect is that data must save correctly through HTML forms. ...

Problem with dojo Dialog in IE7

Hi, I'm trying to use dojo's dialog box in a page in my application but having some problems with the page in IE7 (or in IE 8 in some cases, when the page is viewed in compatibility mode). Following is a rough skeleton structure of the page i'm trying to write. <head> <style type="text/css"> body, html { font-family:helvet...

How to have jQueryUI dialog box dynamically load content

I love jQueryUI's dialog boxes. However, there doesn't seem to be a way to dynamically load content built-in. I guess I have to use some other approach to achieve this? Will iframes load content only when they're made visible? Is that the right way to do this? I'm open to other dialog box mechanisms if they're more suited for loadin...

WPF application exits immediately when showing a dialog before startup

Update: I guess, what I need is to understand what is the "correct", "supported" way to show a dialog before application start in WPF. Here's the code: public partial class App : Application { [STAThread] public static void Main() { var app = new App(); app.InitializeComponent(); ...

C++ MFC: How to open immediately a secondary dialog after the first modal dialog was created.

Hi, how can I open a secondary modal dialog in C++ MFC from a dialog without pressing any button? (If I create a dialog in OnInitDialog(), the first dialog won't appear.) ...

HTML Movie player in iPad modal dialog

Hello, I have modal view controller: [ self presentModalViewController: some_controller_ animated: NO ]; In this controller i have UIWebView with player - <video> tag. <video id="player" width="420" height="310" autoplay='true' controls> <source src='<TMPL_VAR NAME=VIDEO_URL>' type="video/mp4"/> </video> It has native contr...

jQuery, Drupal Modal Frame API preventing recursive popups loading on .ready event

I'm creating a site using drupal where I'd like to prompt my new users to create their profiles on the first login after they register. To do this I'm using ModalFrame API. What I've done so far is create a special role for users 'first timers' which they are assigned once they register on my site. I check in my code for the 'first ti...

jQuery multiple modal dialogs

Hi all, So i have a page that is gonna have multiple modal popups. Each one has values that need to be sent via a form back to the page. To ensure that each dialog is within the form I am using .parent().appendTo("#frmMain"); on the end of each dialog definition. My problem comes when there are more than one modal declared. The modal ...

Retain the dialog to be open after ShowDialog result

Hi All, I'm opening a modal dialog asking the user to fill certain fields. if(dlgUserDetail.ShowDialog() == DialogResult.OK) { } On click of OK, the control comes to the parent form where I'm validating the user input. If the validation fails, I wanted to keep the dialog to be open with the old values. Since it is modal dialog, th...

Is it possible to overload the ShowDialog method for forms and return a different result?

EDIT: This method actually works great and I asked it then found the solution later. I added the correct call in the overloaded ShowDialog() method (it's not exacly an overload, or even an override, but it works just the same. My new question is the one at the bottom. I have a form in which you click one of three buttons. I have define...