Skip to main content

Questions tagged [modal-dialog]

Refers to a graphical dialog used to display important information to the user. These dialogs appear above all other content, blocking application flow until user input is received.

modal-dialog
97 votes
20 answers
437k views

Send values from one form to another form

I want to pass values between two Forms (c#). How can I do it? I have two forms: Form1 and Form2. Form1 contains one button. When I click on that button, Form2 should open and Form1 should be in ...
Nagu's user avatar
  • 5,064
158 votes
3 answers
77k views

Good or bad practice for Dialogs in wpf with MVVM?

I lately had the problem of creating add and edit dialogs for my wpf app. All I want to do in my code was something like this. (I mostly use viewmodel first approach with mvvm) ViewModel which calls ...
blindmeis's user avatar
  • 22.4k
227 votes
12 answers
319k views

Avoid browser popup blockers

I'm developing an OAuth authentication flow purely in JavaScript and I want to show the user the "grant access" window in a popup, but it gets blocked. How can I prevent pop up windows created by ...
Pablo Fernandez's user avatar
722 votes
68 answers
586k views

Bootstrap modal appearing under background

I have used the code for my modal straight from the Bootstrap example, and have included only the bootstrap.js (and not bootstrap-modal.js). However, my modal is appearing underneath the grey fade (...
natlines's user avatar
  • 7,626
265 votes
22 answers
179k views

Twitter bootstrap remote modal shows same content every time

I am using Twitter bootstrap, I have specified a modal <div class="modal hide" id="modal-item"> <div class="modal-header"> <button type="...
Dhruv Kumar Jha's user avatar
245 votes
35 answers
354k views

Multiple modals overlay

I need that the overlay shows above the first modal, not in the back. $('#openBtn').click(function(){ $('#myModal').modal({show:true}) }); <a data-toggle="modal" href="#myModal" class="btn ...
Willian Bonho Daiprai's user avatar
608 votes
12 answers
671k views

Bind a function to Twitter Bootstrap Modal Close

I am using the Twitter Bootstrap lib on a new project and I want for part of the page to refresh and retrieve the latest json data on modal close. I dont see this anywhere in the documentation can ...
BillPull's user avatar
  • 6,973
70 votes
14 answers
163k views

How to make a JFrame Modal in Swing java

I have created one GUI in which I have used a JFrame. How should I make it Modal?
om.'s user avatar
  • 4,219
272 votes
5 answers
148k views

How can I display a modal dialog in Redux that performs asynchronous actions?

I'm building an app that needs to show a confirm dialog in some situations. Let's say I want to remove something, then I'll dispatch an action like deleteSomething(id) so some reducer will catch that ...
carlesba's user avatar
  • 3,136
72 votes
9 answers
329k views

Bootstrap 3 with remote Modal

I just started a new project with the new Twitter Bootstrap release : bootstrap 3. I can't make the Modal work in the remote mode. I just want that when I click on a link it shows the modal with the ...
user2707039's user avatar
280 votes
39 answers
275k views

Twitter bootstrap modal-backdrop doesn't disappear

I am using the Twitter bootstrap Modal dialog. When I click on the submit button of the bootstrap modal dialog, it sends an AJAX request. My problem is that the modal-backdrop doesn't disappear. The ...
paganotti's user avatar
  • 5,641
583 votes
29 answers
353k views

Disallow Twitter Bootstrap modal window from closing

I am creating a modal window using Twitter Bootstrap. The default behavior is if you click outside the modal area, the modal will automatically close. I would like to disable that -- i.e. not close ...
user1296175's user avatar
  • 5,881
152 votes
24 answers
360k views

How to implement "confirmation" dialog in Jquery UI dialog?

I am try to use JQuery UI Dialog to replace the ugly javascript:alert() box. In my scenario, I have a list of items, and next to each individual of them, I would have a "delete" button for each of ...
xandy's user avatar
  • 27.4k
159 votes
4 answers
209k views

How to make modal dialog in WPF?

If I have a Xaml Window, how does one open it as a child window, and then have the parent window wait for the child to close before the parent window continues executing?
Alex Baranosky's user avatar
125 votes
24 answers
526k views

Bootstrap: Open Another Modal in Modal

So, I'm using this code to open another modal window in a current opened modal window: <a onclick=\"$('#login').modal('hide');$('#lost').modal('show');\" href='#'>Click</a> What happens ...
AlexioVay's user avatar
  • 4,490

15 30 50 per page
1
2 3 4 5
71