modal-dialog Questions

6

Solved

I need to make a call when the user is idle and passes the session time out that will close all Bootstrap modals. The modals being active are dependent on what the user is doing at the time so I wo...
Colous asked 31/7, 2013 at 18:24

4

Solved

I can't seem to blur the button after closing the modal. $('#exampleModal').on('hidden.bs.modal', function(e){ $('button').blur(); }); I've tried the above and it still doesn't seem to blur it...
Thad asked 20/2, 2015 at 14:23

4

Solved

I have one component under which I have modal popup which contains child component : <modal data-backdrop="static" #modalTask (onDismiss)="modalTask.close()" [size]="'lg'"> <modal-header...
Mae asked 8/2, 2018 at 8:53

5

Solved

So I'm using Twitter Bootstrap and I have a modal that slides down when the user clicks the "Register" button. The only problem is that the not only does the background page fade, which is a nice ...
Maxwellmaxy asked 13/11, 2012 at 19:25

6

Solved

I have two modals, they pop up on button click. One works fine, however for the second one, the screen just goes black and nothing happens: First, working modal: <div id="deleteConfirmation" c...
Cressida asked 18/6, 2015 at 8:47

3

Solved

I am having problems positioning the modal window in the center of the window. It is showing the position in the right side.What am I missing, this appears to be a CSS problem that I am unable to s...
Cymbre asked 1/12, 2013 at 15:29

3

Solved

I've tried calling modalSession=[NSApp beginModalSessionForWindow:conversionWindow]; [NSApp runModalForWindow:conversionWindow]; in order to get a modal conversionWindow that prevents the user t...
Sparklesparkler asked 30/8, 2011 at 16:0

8

Solved

Instead of opening as a layover popup, it opens as a block on the bottom of the page left aligned. I searched for similar problems, found this angular2 MdDialog is not appearing as a popup but als...
Outspoken asked 27/1, 2018 at 23:45

4

Solved

In a Google Sheets spreadsheet, I want to show a modal dialog created from HTML, then run a function, then close that HTML prompt automatically. The dialog should stay until the function finishes ...
Allelomorph asked 20/3, 2016 at 17:36

6

Solved

I am using this code but the modal is too thin: <div class="modal fade bs-example-modal-lg custom-modal" tabindex="-1" role="dialog" aria-labelledby="myModal" aria-hidden="true" id="myModal"&gt...
Danczyk asked 16/9, 2014 at 1:13

2

Solved

I'm using .NET Framework 4.5, Bootstrap v3.3.6 on a ASP.NET MVC project. What I want to do is create a modal form I tried the following: Created a modal container in the main layout <div id...

3

I had already made a modal component with <HashRouter> in react-router that became active and inactive with hash url i.e modals is inactive when url is /route and modal1 is active when url is...
Gravitate asked 3/2, 2020 at 9:49

2

Solved

I'm creating some modals with Bootstrap. I'm using different div's as showed in Bootstrap component explanation. What I'm experiencing is that when my screen size is larger than x (mean some unkn...
Malachite asked 22/1, 2016 at 23:13

9

Does anyone know how to open a bootstrap modal with vue 2.0? Before vue.js I would simply open the modal by using jQuery: $('#myModal').modal('show'); However, is there a proper way I should do th...
Hummel asked 19/3, 2017 at 18:23

3

I have a bootstrap model and inside I have an input field. <input type="text" name="quota" class="form-control" id="quotas" value="'.$storagequota.'" maxlength="20" > Also, I have a button...
Laxation asked 28/8, 2015 at 16:1

21

Solved

I have this ContentView with two different modal views, so I'm using sheet(isPresented:) for both, but as it seems only the last one gets presented. How could I solve this issue? Or is it not possi...
Blepharitis asked 13/11, 2019 at 12:19

4

Solved

what is the easiest way in rails 3 to to ask "Are you sure you want to do that?" when the user clicks on a link? the link in this case overwrites some data with a new value. It's a simple link_to ...
Hoitytoity asked 3/4, 2011 at 9:9

6

Solved

Hello Fellow SO users, Got this problem where i auto populate a modal box. Sometimes it already has content, so i tried doing a hide/show on each request. But the show is fired before the hide f...
Ricoriki asked 6/1, 2012 at 9:9

30

Solved

I have a bootstrap modal dialog box that I want to show initially, then when the user clicks on the page, it disappears. I have the following: $(function () { $('#modal').modal(toggle) }); <...
Fusilier asked 11/5, 2013 at 2:49

24

Solved

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 happ...

3

Solved

OK, I'm by no means a JavaScript guru, and perhaps I'm still thinking in terms of Desktop software development, but this is what I'm trying to achieve : I'm using Twitter Bootstrap's Modals In so...
Laveralavergne asked 13/8, 2012 at 9:53

9

Solved

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 app...
Harless asked 3/8, 2011 at 15:54

2

Solved

I have this two components: import React, { useState, useEffect } from "react"; import axios from "axios"; import Button from "../../../components/Button"; import NewA...
Leannaleanne asked 1/6, 2022 at 9:47

1

I'm developing an app for iPad with SwiftUI. I want to present a page sheet but with a smaller size. I'm using but I can't change the width of the page sheet. .sheet( isPresented: self.$isEditin...
Bandmaster asked 23/4, 2020 at 14:53

6

Button invoked modal dialog: When button is clicked, event is fired the resulting event reference e.relatedTarget is undefined. So, how can I get the invoking button from the handler? e does not se...
Ppm asked 27/5, 2014 at 13:57

© 2022 - 2024 — McMap. All rights reserved.