A form (window, box, etc.) presented to a user, usually for the purpose of capturing input or to make a decision.
0
votes
0answers
10 views
How to keep showing a fragment dialog (top-most) while navigating to another activity?
I have a problem with keep showing a fragment dialog (top-most) while navigating to another activity. When the activity is navigated, the fragment dialog is overlapped by the activity.
Does anyone ...
0
votes
1answer
48 views
jquery dialog jumps when page scrolled
EDIT:
Having just tested it in more browsers, it happens in Opera, IE 9 and Firefox as well.
It seems to work fine in sites like jsbin, jsfiddle, etc... but if you just create a html file with that ...
0
votes
2answers
389 views
How to concate values in messagebox text using C++ win32 API?
i want to show the messsagebox using win32 API...
int pwdexpirydays=5;
MessageBox(hdlg,(LPCSTR)("Your password will expire in %d days",&pwdexpirydays),(LPCSTR)"Logon Message",MB_OK | ...
20
votes
8answers
23k views
Prompt Dialog in Windows Forms
I am using System.Windows.Forms but strangely enough don't have the ability to create them.
How can I get something like a javascript prompt dialog, without javascript?
MessageBox is nice, but there ...
-2
votes
1answer
63 views
Facebook Share Feed Dialog only working for Admins
After creating a Facebook App, leaving it in Sandbox and attempting to setup a Share button using the Feed Dialog, it seems only FB accounts I've added as Admins are able to use the Share button - all ...
2
votes
2answers
662 views
Pass data to a jqueryUI Dialog
For a web-app I'm developing, I need to pass the current user to a jqueryUI dialog box. Right now, I'm trying out simple examples to get to this point.
I'm trying to pass the contents of "p" tag from ...
0
votes
0answers
9 views
Skip the validate.noEmpty() on ckeditor under condition
I'm currently creating a plugin for CKEditor wysiwyg box and this plugin call a dialog box, in this dialog box i have this element :
{
type :'text',
...
0
votes
2answers
465 views
Any way to check the validity of a Facebook feed dialog via direct URL's returned post_id?
I'm letting Facebook users post a link to their feed in exchange for something. For simplicity, I'd like to use the 'Direct URL' method of initializing a feed dialog
(see "Direct URL Example" @ ...
0
votes
0answers
27 views
How to pass file upload results from MVC controller to jQuery dialog
After loading a CSV file from Index.cshtml via:
@using (Ajax.BeginForm("LoadCSV", null, new AjaxOptions { HttpMethod = "POST" }, new { enctype = @"multipart/form-data" }))
{
<input type="file" ...
0
votes
1answer
14 views
update view from another one the same viewmodel
I am new to the MVVM philosophy, and my question may be stupid but hey, I try anyway.
I have a view associated with a model view. In this view, I open a dialog box when the user presses a button.
...
0
votes
0answers
6 views
PyQT Dialog Window with Toolbar
What is the standard approach of adding a toolbar to a dialog window in PyQT? I seem to be able to add toolbars only to a main window class.
4
votes
6answers
7k views
jQueryUI modal dialog does not show close button (x)
I'm using a jQuery modal dialog in my ASP .NET MVC 3 application. It works fine except for that there is no close button showing in the top right corner. How can I add this?
...
0
votes
1answer
18 views
Adding controls at runtime in from derived class in MFC
I have two classes.
class DialogBase is inherited from CDialog
class DialogDerived is inherited from DialogBase.
BOOL DialodDervied::OnInitDialog()
{
CDialogBase::OnInitDialog();
//Add ...
0
votes
0answers
32 views
Getting errors on project build when a class is added to the mfc dialog
I have already an existing project in mfc working in visual studio 2010. The project is a combination of multiple projects of which one develops output of executable(.exe) type while the others ...
0
votes
1answer
23 views
Save & Load scroll bar state in a dialog based MFC application using serialization.
I am working on a dialog based MFC application that consists of check boxes, scroll bars, buttons, edit control etc. I am trying to save the application's current state into a .txt file and then load ...