dialog

Jquery Dialog - extra dialog opening

I have a dialog opening after a form is submitted using the ajaxForm plugin. The ajaxForm updates the dialog content. The problem is that an extra dialog is opening. Here's the javascript code: function formSubmit(target, form, success){ var formoptions = { target: target, success: success }; $(form).ajaxForm(...

EditText not returning content on getText()

The code snippet below displays a Dialog with a simple login-form. The problem is that when the user hits the login-button, the text that was entered into the EditTexts are not returned on the getText()-call. However, if I set android:setText="foo" on the EditTexts in the xml-layout "foo" is returned on getText(). Any idea why the text e...

jquery dialog button variable

Hi All, Can anyone tell me how can i use a varaible foe button text in jquery dialogs . I want to make a dynamic button name. ...

How do I handle opening and closing new Windows with MVVM?

With MVVM and WPF what would be a good/straightforward way to handle opening and closing new windows and dialogs? Opening and closing should be driven by the ViewModel right? But the ViewModel should not know about the view ... ...

Jquery dialog box not positions center screen

I have a jquery dialog box that is mean't to position in the middle, however it seems slightly off center vertically. Here is the code: $(\'#add_box\').dialog({ autoOpen: true', width: 300, modal: true, resizable: false, bgiframe:true }); Any ideas why this won't center? ...

How can I use the default dialog icons in my custom Blackberry popup dialog?

I'm writing a custom dialog window to display the status of a long operation, and would like to use the little timer icon (the little square clock on OS >= 4.6) that's used in the BB native dialogs. How can I use this graphic within my dialog? I'm already familiar with layout managers and such, I just don't know where the bitmap is, or...

Getting a value for a report via dialog, MS Access

OK, this should be brainlessly trivial, yet I can't manage to run. MS Access. I have a report. Before that gets on the screen, a dialog box should appear, and the user should type a number. I did this: I put a text box in the report (the value from the user should appear there). ControlSource has the same value as the name of the text ...

C# close Outlook "Outbox is not empty" dialog programmatically

I have a program that sends information in the background using Outlook. I want to avoid having the user deal with the "Outbox is not empty" message that appears when a user tries to close Outlook when an email is in the outbox. because in most cases the email in the outbox will not be an email they sent themselves. I am able to get a ...

jQuery UI Dialog

Hi, I am trying to open a dialog window onclick for each link with the class specified below. But it's not working. However, the code works if I replace .dialog('open'); with .hide(); I don't understand why it's not working if I can attach the click event with hide() but not dialog. Any suggestions are welcome. :) ty $('.btn_re...

jQuery UI - Dialog closes immediately when opened with onkeypress Enter/Space

I want to open a jQuery UI dialog when a user presses enter or space on a given element. It appears that the enter/space keys are being processed by the dialog, however, causing the default element (the cancel button) to be pressed. The dialog is closed almost as soon as it opens. Here is a simplified demonstration: <script type="t...

Choosing Windows File Open and File Save Dialogs - What is the Best Practice?

For some time I've noticed how much the File Open and File save dialogs vary between Windows itself and Applications. In Delphi for example (which I use) you can use the built-in dialogs (which have a folder tree) and direct calls to the Windows API which produce variants of the Windows version, with or without large buttons for 'Desktop...

Flash on top of jQuery dialog

Hi, I know many have asked this question, but I think my situation is a little bit different. I have a site where I have some ads which is Flash hidden in a because of xhtml/html compatibility issues. But the flash elements is on top of my jQuery dialogs which is not ideal. Some solutions have suggested setting wmode to opaque but I ...

How to suppress unneeded InstallShield InstallScript MSI dialogs?

I have an InstallShield 2009 'InstallScript MSI' project which shows 2 dialogs which are not necessary in my installation: Customer Information Setup Type How can I disable those 2 dialogs? Under 'User Interface', the 'All Dialogs' tree lists those dialogs, but they are all grayed out, and cannot be disabled or changed. ...

How to deal with look-and-feel differences between standard dialogs and WPF?

Hello everybody, please help resolving one look-and-feel inconsistency issue in WPF. Look at the picture from MSDN Magazine article on Advanced WPF: MessageBox.Show(message) is called, and why the button on it looks different than buttons on the main window? The Open File standard WPF dialog has the same problem, only worse: on Vist...

Dynamically create text in dialog box

How can I dynamically set the text of the dialog box that I'm opening? I've tried a few different things but they all respond with an empty dialog box. Here is my current try: $('#dialog').text('Click on the link to download the file:'.data); $('#dialog').dialog("open"); ...

jQuery UI dialog is shifted to the right. Why? Self-solved

When my dialog appears, it appears shifted to the right of center. What could be causing this? -Disregard. After opening I used "$('#myDialog').dialog('option','position','center');" and it centered it. ...

YUI Panel Resize issues

I am having trouble while using the YUI panel as a dialog. I have a dialog object created with javascript on page load: $J = jQuery; dialog = new YAHOO.widget.Panel("dialog", { width: "300px", fixedcenter: true, close: true, draggable: true, zindex: 4, modal: true, visible: false }); Then when I call my loadDialog() function from eve...

How to pop up error message in the wix installer when any failure happens in custom action code

I have one custom action code which validates the IP address enters through the dialog during installation. If IP address enters is invalid the custom action code should returns failure. After that wix should pop up error message so that user can understand that the IP address entered by him is invalid. How can I achieve this? ...

Can I get two successive dialogs in javascript?

I have a need to check two unrelated conditions when the user clicks submit, and request user feedback for each. I can get one jquery dialog up working great but I will sometimes need two in a row, and then have it complete the button event. Here's the gist: I have button <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnCli...

jQuery datePicker below UI dialog?

Hi, See Example After clicking the show container link the datepicker component - 2nd input - is shown below the UI dialog. What should I do to show it above the UI dialog? ...