dialog

modal dialog in jquery that doesn't block the whole site

how to achieve this? let's say that I have 3 dialogs A, B and C. I can work with them at the same time by having them one next to the other, drag them around, put them one on top of another, etc... now, at some point, the B dialog opens a dialog X. I must still be able to work with dialogs A and C but I must not be able to work with B un...

Firefox extension development: How open file dialog on any link

I want to create extension, that's allow open save dialog in ff on any link (not "save as" dialog - dialog with choice of download method (usually it apperas, when click on file)). Any body knowns - it's possible? and how? ( may be source draft, link, any information ) P.S. sorry for my English ...

C++ Win32api, creating a dialog box without resource

Hi! I'm new to win32api programming. I would like to know how to create a dialog box within a non-gui program (without any resource created). I've seen some examples with that CreateIndirect function. Is it the best method? Any other way? Thanks! ...

example of a simple Facebook dialog containing a form posting params back to rails controller

I have an FBML canvas app and I have a few places that I currently display forms in their own pages, but we'd like to move these to dialogs. So, could someone give an example of using a link to popup a dialog with a form in it and handling the submission of that form in the controller? ...

Handling web page dialogues with WATIN

Hi, I have a web page that pops up a web page dialog. How can i handle this using WatiN ? ...

NSMenu problems showing/hiding HUD NSPanel

Still having great difficulty with this problem. Any suggestions? I cannot find a simple tutorial online that explains the basics of NSPanel windowing as different from NSWindow. I have an HUD window that I'd like to show as a notification & input box, but I cannot for the life of me figure out how. My attempts are below. I know thi...

Why is initializing service not in quotes when target service is?

I've just inherited a SQL Server 2005 database that's using service broker (this is part of a bigger project/solution). Everything about the solution is working fine. I'm trying to grok the service broker SQL, and I see this statement. BEGIN DIALOG CONVERSATION @h FROM SERVICE foo_Init TO SERVICE 'foo_Target' ON CONTRACT fooContract ...

Reload Jquery UI Parent Dialog

All, When I click a link on a web page, a JQuery UI Dialog opens up and it loads some ajax content into it. If I click a link inside this dialog, it opens up a child dialog. When I click "OK" in the child dialog, I want the child dialog to close and refresh the ajax content in the parent dialog. How can I do this? Thanks ...

C++ Exception Handler problem ...

Hi, I written an exception handler routine that helps us catch problems with our software. I use SetUnhandledExceptionFilter(); to catch any uncaught exceptions, and it works very well. However my handler pop's up a dialog asking the user to detail what they were doing at the time of the crash. This is where the problem comes, becau...

WinForms equivalent of Java's JFileChooser.FILES_AND_DIRECTORIES

Java has JFileChooser.FILES_AND_DIRECTORIES to allow the user to select a file or a folder. .NET WinForms has OpenFileDialog for files and FolderBrowserDialog for folders. Does .NET have any component that can allow for either? ...

Jquery Dialog..What am I doing wrong?

I am not sure what I am doing wrong. The dialog box comes but it does not follow any of the settings I specified. function voteToday(id,userid){ $(".pleaseLogin").dialog({ autoOpen:false, bgiframe: true, resizable: false, width:200, height:75, modal: true, overlay: { backgroundColor: '#000', ...

Identify which AlertDialog triggered onClick(DialogInterface dialog, int which)

I'm creating a dialog as follows: @Override protected Dialog onCreateDialog(int id) { switch (id) { case DIALOG_1: return new AlertDialog.Builder(this) .setTitle(R.string.s_dlg1) .setPositiveButton(android.R.string.ok, this) .create(); case DIALOG_2: ... ... } return null; } @Override public void onCl...

AutoCompleteTextView problem in Dialog?

dear friends, i am trying to put Autocomplete text view in dialog but getting error on adaptor i have created new class extended by dialog and written following code. AutoCompleteTextView textViewCountry = (AutoCompleteTextView) findViewById(com.example.FindItNear.R.id.autocomplete_radius); ArrayAdapter adapter = new ArrayA...

Calling a second dialog from a dialog window fails to make either one active

Sorry for stupid questions, I'm doing everything as described in this tutorial: http://www.functionx.com/visualc/howto/calldlgfromdlg.htm I create the dialog window and try to call another dialog in response to a button press using the following code: CSecondDlg Dlg; Dlg.DoModal(); Modal window appears but isn't active, and main wind...

Can I move HTML DOM object to a browser dialog to implement "detach" functionality

If I open a browser dialog with window.open, can I move HTML DOM object back and forth? I know how to use jQuery's .detach() to move stuff (with all bound events) within the page. I wonder if there is a way to do it between a page and it's child dialog. The main purpose is to support a "detach" or "tear off" functionality for a widget...

jQuery UI Dialog shown using an ASP.NET button.

Hello. I'm trying to show a modal dialog when the user click on an ASP.Net button. This is my page: <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> <script src="js/jquery-1.2.6.min.js" type="text/javascript"></script> <script src="js/jquery-ui-1.6.custom.min.js" type="text/javascript"></sc...

Disabling Dialog Controls MFC

Hi, How do I disable all the controls in a dialog window ? I know I could use EnableWindow(FALSE); but this doesnt seem like a good idea because now there is no way for the user to click "Ok" or "Cancel" button or press the "X" icon to exit. The dialog is like frozen. What I am looking for is a way to disable all the controls in a di...

Show dialog while loading new screen

I have a front screen with a button which opens a second screen. The second screen can take a few seconds to load so I want to display a dialog while loading. My problem is the dialog does not display while loading second screen, but it displays when I return to first page from the second page. If I comment out the "startActivity" to ope...

DatePicker Widget (NOT Dialog) OnDateSet / OnClick event?

How do I know when the date has been changed in a DatePicker widget? OnClick does not fire and there are no other useful events. ...

Dojox Datagrid contains data, but shows up as empty

I'd really appreciate any help on this. There is this Dojox Datagrid that I'm creating programatically and supplying JSON data. As of now, I'm creating this data within JavaScript itself. Please refer to the below code sample. var upgradeStageStructure =[{ cells:[ { field: "stage", name: "Stage", width:...