dialog

Why don't Firefox and other apps honor my Windows XP settings?

Recently for convenience I set up Windows XP to "Automatically move pointer to the default button in a dialog box" (via Control Panel => Mouse => Pointer Options). For most dialog boxes (e.g. Windows file delete confirmation, Outlook empty deleted items) Windows will follow this directive and automatically position my cursor above the d...

MFC: child dialog behavior

I'm trying to make my child dialog box to be created as a member of the main application class as follows: class ParentWindow : public CWinApp { public: // Other MFC and user-implemented classes before this line MiscSettings activeMiscSettings; public: ParentWindow(); ~ParentWindow(); // Overrides virtual BOOL Init...

Simple Jquery Dialog but now on click

I tried making a dialog using jquery it works but I have no succes at doing it onclick bacuse it should not just popup but only when you click on it. <script type="text/javascript"> $.ui.dialog.defaults.bgiframe = true; $(function() { $("#dialog").dialog(); }); </script> and <div id="dialog" title="Basic dialog"> <p>hi how a...

How to design a CSS for a centered floating confirm dialog?

Hi there, I'm looking for a way to display a confirm dialog that's always centered on the page, and floating over the page. Tried that, but it's not 'always centered' at all, since the position is fixed: .Popup { text-align:center; position: absolute; bottom: 10%; left: 27%; z-index:50; width: 400px; backgr...

MFC menu item checkbox behavior

I'm trying to add a menu item such that it acts like a check mark where the user can check/uncheck, and the other classes can see that menu item's check mark status. I received a suggestion of creating a class for the menu option (with a popup option), however, I can't create a class for the menu option when I'm in the resource layout ed...

JQuery popup size geting bigger while posting ...

Hi, I have put a JQuery dialog box in page on button click. The dialog box has text as well as some controls. I need to submit this dialog box but the problem is before submitting I am displaying the given values in a message box. AT the time of displaying the message box the pop up size geting bigger and all the text bocomes big in siz...

jquery dialog image

Hi all, i am calling the function given below on dropping a tag on an area. If that tag drops successfully it should append an image and on double click it should produce a dialog box.This happens for the first time when i drop a tag but does not work when i drop that second time. function dropFile() { $(".File_div")...

how to open the find type dialog programmatically in eclipse

Hi, I want to open the "Ctrl-Shift-T" dialog (find a type) programmatically in eclipse plug-in. I tried the FilteredItemsSelectionDialog and ResourceListSelectionDialog, but how do I get all the types in the workspace? Thank you, Ido. ...

How to harvest data in jquery dialog to Mvc Controller???

I am using ASP.NET Mvc to display a JQuery dialog that has a few input fields. I now need these fields to submitted to an action method like how a normal HTML submit button would work on an ASP .NET MVC application and i want to harvest data in dialog to Mvc controller. How do I accomplish this? This is my data form <% Html.BeginForm("...

jquery dialog problem

Hi all, In the function given below i am sending a harcode value in droppable function i.e tag. I want to find out on which element this file (.File_div) has been dragged so that i can pass that value in the tag variable.How can I do this? function dropFile() { $(".File_div").draggable({ helper:'clone', revert: 'i...

How to put a Dojox.grid in a dijit.Dialog

I've read through the posts about dojox.Grid here, including the one about the tabcontainer, but it doesn't seem to solve my problem. I have a grid that I am adding programmatically which works a treat if the grid is in the "main" markup, but ceases to display if I put the grid in a dialog. Any ideas as to why? Using dojo 1.3.1. d...

System.Windows.Forms.WebBrowser.Print() displays print dialog

From MSDN: This method prints the current document without requiring further user input. To display the Print dialog box prior to printing, use the ShowPrintDialog method. But when I execute .Print() in my code, I always get the normal Windows printer dialog box. My question is simply: how do I avoid display of the printe...

How to control Webpage dialog with python

Hello, When I try to automatically download a file from some webpage using Python, I get Webpage Dialog window (I use IE). The window has two buttons, such as 'Continue' and 'Cancel'. I cannot figure out how to click on the Continue Button. The problem is that I don't know how to control Webpage Dialog with Python. I tried to use win...

swing: saving dialog box resize dimensions

I have a dialog box with a bunch of dimensions that a user can change by moving/dragging, including a JTable with resizable/draggable columns. What I would like to do is to make the state of these resizable columns / dialog boxes / etc. persistent, so the next time my application starts up, the user doesn't have to go through the resizi...

How to monitor Windows Dialog?

I am looking for a way to monitor Windows dialog during a MSI deployment. Here is my situation: we have machines deploying daily MSIs and once in a while, one of them fail and shows a Windows dialog with an error message. I am trying to find a way to write a script (maybe in Powershell) which will run every minutes and look for a Window...

Precasted About Dialog

I do need a good About Dialog for my app, something like the Visual Studio About Dialog. I'm kinda too lazy to design it myself and make all the properties. Does anybody know if there's a precasted one somewhere? Google didn't help me at all... C# + Winforms ...

ASP.NET user control and jQuery dialog

On my page I got the following user control: <div class="editFormDialog" style="display: none; font-size: 12px;"> <mm:Form ID="editUC" ShowCreateButton="false" ShowEditButton="true" runat="server" /> </div> This UC has a public property that takes a DataSet, and updates some fields in the UC. So when I push a button on my page, i...

How do I use dijit.TooltipDialog on a div?

I would like to show a "drop down dialog" when I click my link/div. So far have the following code: <html> <head> <script type="text/javascript" djConfig="isDebug: false, parseOnLoad: true" src="lib/dojo/dojo.js"> </script> <link rel="stylesheet" type="text/css" href="lib/dojo/resources/dojo.css"> ...

how to use jQuery to show up a non-modal dialog?

Here is a plugin for block dialog: http://malsup.com/jquery/block/#dialog But what I need is a non-block dialog. Is there such a plugin? It should be as light as possible ...

lightest non-modal dialog with jQuery?

Here is a demo: http://jqueryui.com/demos/dialog/ But it's too huge for me. There are 2 thousand lines included in all. I'd like to have one in a single file with less than 1 thousand lines. ...