Tagged Questions
0
votes
1answer
30 views
Prevent windows from opening
Hi would like to ask a strange question. Its about testing a WPF application.
My current object under test is a WF application that spontaneously opens informational dialogs. Those dialogs are modal ...
0
votes
1answer
26 views
Mimicking ::DialogBox() for a custom Win32 modal dialog
I have an old school Win32 modal dialog written in C++. The layout is constructed in code (not loaded from a resource) and displayed using a custom modal message loop like this:
// Spin message ...
0
votes
0answers
86 views
jqueryui - overlay remains after closing modal dialog
I have several modal dialog opened at the same time. To distingiush betwwen them some have 'dialogClass' defined. Now I can close them:
$('.my-dialogClass').dialog().dialog("close");
This closes ...
0
votes
1answer
104 views
Jquery UI: Dialog launched from button on a tab briefly shows the dialog, then closes it and opens the 1st tab
I'm pretty new to jquery, and I'm having a problem I can't seem to fix.
So, I have some Jquery UI tabs. On the second tab I have a button that when clicked is supposed to launch a dialog.
I ...
0
votes
1answer
433 views
Knockout and jQuery dialog - When view model binding context is not document.body?
Say that we have a simple model and view model:
// Model
function Model(prop) {
this.Prop = ko.observable(prop);
}
// View Model
function ViewModel(){
var self = this;
...
0
votes
0answers
54 views
Java Custom Cursor Not Remaining
I have a cursor being made with the following code:
mainWindow.setCursor(Toolkit.getDefaultToolkit().createCustomCursor(
Utilities.getImage("images\\mouse_pointer.png", false),
...
5
votes
1answer
339 views
Main window disappears behind other application's windows after a sub window uses ShowDialog on a third window
I have noticed this very odd behavior in a WPF application.
I have a MainWindow, which is shown using Show() from App.OnStartup. Said MainWindow can open a (non-modal) SubWindow, also using Show(). ...
0
votes
1answer
302 views
How to invoke a button using C++ Win32 API when press the enter button?
i have created a dialogbox using c++ win32 API...
there are 3 text box,1 combo box and 3 buttons...
now i have 2 problems...
1.when i press the ENTER button,it invoke second button(ID_OK) ...
0
votes
1answer
301 views
Set focus on a modeless dialogs hosted in an MFC view
I have an MFC view, and I have another project which implements and MFC dialog.
I want to host the dialog in my view.
My view is of class CFormView.
I did it that way in my view code:
...
0
votes
2answers
134 views
Trouble getting a Jquery dialog box to work
I launch a jquery dialog box that has it's 'normal' color styled as black. Inside the dialog box there is a div (separate to the dialog's main div container) that contains text (say "mickeymouse").
...
2
votes
1answer
766 views
SWT modal dialog not modal
According to another discussion here, I try to open a modal view like so:
public void widgetSelected(SelectionEvent e) {
final Shell dialogShell = new Shell(ApplicationRunner.getApp()
...
6
votes
4answers
199 views
jQuery dialog over content from another site
I'm using jQuery's lovely and simple dialog command to open a dialog box in front of some embedded 3rd party content. This embedded content could be a page from any website. I CAN get this to work on ...
0
votes
1answer
130 views
Datatables and Modals
I have a data table setup (http://datatables.net/) and I am trying to have an option to delete a row from the table and have a jQuery dialog modal popup to confirm. However, the modal works fine on ...
0
votes
0answers
349 views
check if validation fails inside a wizard and a modal dialog in primefaces
This is my attempt to check if my validation fails after the "Next" button is pressed inside a wizard. This is done in oncomplete - At the moment I'm just showing a JS alert message that shows a value ...
1
vote
0answers
219 views
Writing in file and saving it from Save as dialog through javascript
Below code is working fine to write XML data into a file.
function btnSave_onclick() {
var aFSO = new ActiveXObject("Scripting.FileSystemObject");
aTS = aFSO.OpenTextFile(FilePath,2,true);
aTS.Write ...
0
votes
3answers
264 views
Form with jquery not working in dialog
I have 3 buttons each opening a different form into a dialog. The buttons show the dialog ok but i want to use jquery within the form. Anytime i try to include some jquery functionilty to the form to ...
1
vote
0answers
52 views
Applying Dialog Affect to Inline-Relative Div (without hover affect)
I'm trying to place a jquery dialog into a div container relative to another div container. In other words, I'm looking for it to appear in-line and have it's appearance affect the elements ...
0
votes
2answers
720 views
DoModal does not show dialog but does its work [closed]
I have a class which is derived from CDialog. Now my dialog has a textbox and two buttons (ok and cancel), in my current code i am doing DoModal() which displays the dailog and textbox is filled with ...
1
vote
1answer
93 views
What does uMsg parameter mean in the definition of CALLBACK DialogProc()
The MSDN link http://msdn.microsoft.com/en-us/library/windows/desktop/ms645469(v=vs.85).aspx
explains about the DialogProc callback function.
Here I don't see any explanation given about the 2nd ...
1
vote
1answer
251 views
Requests dialog not closing
I have been using the requests dialog quite happily up until this morning when it has stopped working correctly.
When submitting the dialog or cancelling it, the dialog becomes stuck and does not ...
0
votes
1answer
69 views
jQuery-UI Dialog: How to make NONE of the action buttons “default”
In jQuery-UI dialog box, the first button appears to be the default, therefore having focus set to itself.
But, this causes a frustrating effect, especially in Safari. Even in IE, you will see a ...
0
votes
0answers
173 views
Upgrading jQuery UI from 1.7.3 to 1.8.18 breaks dialog widget
I'm currently looking into upgrading the version of jQuery UI we use from 1.7.3 to 1.8.18 (yes, we've fallen behind a bit!).
We have a bit of functionality which calls the dialog widget on submit if ...
0
votes
0answers
284 views
JQuery UI Modal Overlay Issue
I'm having an JQuery UI Dialog Modal Overlay issue. The first time it pops up, it will display overlay and when I press "create" after user has filled out information, it would close the dialog AND ...
-3
votes
1answer
129 views
Is NSOpenPanel doesnot work in ios application
Hello.Am new to ios development.What have to do for NSOpenPanel to work in the ios application for opening the dialog box.Can somebody help me in doing so?Am really strucked with this NSOpenPanel.I ...
0
votes
2answers
669 views
jQuery Dialog button within form causes POST
I'm trying to place a modal dialog within a form to aid in filling in the fields. If I place the button outside of the form, it works as expected. If I place the button inside the form, the form ...
0
votes
1answer
448 views
JOptionPane.showInputDialog() in GWT
Is there any simple way to create instance of modal DialogBox with single text input control, which will return String entered into the text control on pressing "OK"?
I'm looking for something ...
0
votes
1answer
166 views
MB_TASKMODAL flag for modal dialogs boxes
Would it be possible to create a modal dialog box with DialogBox(Param) that blocks all other top-level windows in its owner thread, similar message boxes created with the MB_TASKMODAL flag?
The ...
3
votes
4answers
2k views
jQuery on submit validation, with modal dialog at the end?
I have a form at the moment I'd like to validate, and assuming everything is correct, I'd like it to then popup a dialog confirming their details, here's an example of the code I have so far:
var ...
3
votes
1answer
812 views
How to get the height and width of a dialog after resize?
I created a dialog successfully with resize enable but for my project I need the height and width of the open dialog after it is resized by a user.
I have created a button with id = opener and a div ...
0
votes
3answers
4k views
IE8 not working with jQuery Dialog
I have an HTML form:
<div id="dialog" class="event-dialog" title="Create Event">
<div id="dialog-inner">
<table>
<tr><td align="left">Event ...
2
votes
0answers
86 views
Create reshare dialog using Javascript SDK
Is it possible to create "reshare" dialog using Javascript SDK?
1
vote
3answers
219 views
Jquery UI dialog box.. dialog box content loading on main page
I am activating a dialog box like so:
$('a#addNew').click(function(){
$('#popup').dialog({
minWidth: 700,
title: 'Select a product item'
});
});
<div id="popup" ...
3
votes
2answers
9k views
How to refresh a parent page after closing sharepoint dialog?
How to refresh a parent page after closing sharepoint dialog?
Here is my coding to open a pop-up.
<input type="button" value="Add" class="button submit" style="width: 80px" ...
0
votes
1answer
636 views
jQuery UI dialog modal set to true doesn't work for radiobuttons
When the dialog is set to modal it should disable all input elements, but I tried a simple example with a textbox and a radiobutton. When the dialog is opened the text-input is disabled as expected, ...
1
vote
3answers
3k views
How to make android dialog modal?
I implemented this custom AlertDialog like so:
AlertDialog dialog = new AlertDialog.Builder(this)
.setView(dialogView)
.setTitle(getResources().getString(R.string.addedit_asklater_price))
...
1
vote
2answers
1k views
jquery 1.4.2 - jquery UI dialog, close when outside click (not modal)
Using UI dialog.
jquery 1.4.2
I have my code to close a dialog when clicked outside.
This doesn't work for me. However, if I up the version on a local development, it works fine.
The issue is, that I ...
1
vote
1answer
998 views
How to implement modal window in asp.net?
I'm creating a project in asp.net and I looking for Modal Window (like ajax modal popup) in order to use in all dialogs from my application, the problem is that this ajax component is only compatible ...
2
votes
3answers
5k views
How to load an ASPX page into a JQuery dialog box
I am trying to load an ASPX page into a dialog box when the user clicks on a menu item. The "home" page is built using VS2010 and contains a master page and default page.
When I click on the menu ...
1
vote
1answer
4k views
Using custom width and height, jQuery Mobile Dialog center to screen
I have created app using jQuery Mobile and need to get a Dialog box when button is clicked. The Dialog box should be center aligned of the screen when i have specified the width and height of the ...
0
votes
2answers
878 views
How can I have a dialog box in jsf?
I need to have a dialog box in my jsf application which should pop up on click of a link or an image. I need to put signup form on this dialog box and submit should submit this form. Is this possible ...
3
votes
6answers
4k views
Primefaces dialog is rendering twice
I've created an ui:component to use like a popup, so I can create a lot of popups using the standard of this template.
The component is just a popup with two buttons (cancel and submit) and a content ...
2
votes
1answer
111 views
Call the dialog “Contact the Developer” from application page
How can I call the dialog "Contact the Developer" from application FAQs ?
2
votes
1answer
482 views
Unexpected behaviour of System.Windows.Window.ShowDialog() when no other windows are open. Any idea why?
I picked up on this (with some effort) when my WPF MVVM application tried to show two consecutive error dialog windows before the main window was launched: After OKing the first window, the ...
1
vote
3answers
4k views
Custom “confirm” dialog in JavaScript?
I've been working on an ASP.net project that uses custom 'modal dialogs'. I use scare quotes here because I understand that the 'modal dialog' is simply a div in my html document that is set to ...
0
votes
1answer
489 views
Problems with plugin in jQuery dialog boxes
First question, why is this style
label, input { display:block; }
reducing the width of the dropdownchecklist drop-down list (the text appears below the checkbox)? The style is needed for other ...
1
vote
1answer
238 views
Not sure how to UpdateData?
Language: C++
Development Environment: Microsoft Visual C++
Libraries Used: MFC
Problem: I have created a preference configuration application. To the left is a list box with the "parent" ...
0
votes
1answer
596 views
WPF MVVM DialogService close modal dialog?
I use the MVVM-pattern in my WPF-application. Now I show a dialog with my dialogService:
_dialogService.ShowDialog(Me, settingsViewModel)
The mapping (which view should be shown to this ViewModel) ...
0
votes
3answers
583 views
Assertion Error in Dialog manipulation
The title is pretty weak, but I will try to explain here. I am working on an MFC Application. When a button is clicked, a new dialog is created, some strings are added to a ComboBox from that second ...
0
votes
1answer
688 views
MFC: Dialog box not displaying after keystroke
thank you for you time in advance.
Very new to MFC and attempting to finish a cs project before Sunday. We are to create a simple program that displays polygons in a grid. Rectangles are working ...
0
votes
2answers
407 views
FormSheet modal dialog won't hide
I have a modal dialog that I show using the following code:
private void ShowUpdateDialog(float version, bool breakingChanges, string hint, string storeLink, string changelog, params string[] pars)
...

