All Questions
79 questions
0
votes
1
answer
129
views
Load Bootstrap Modal only when content is ready
i have a little problem with my bootstrap modal.
I have a list with different listitem. Every item have an id. If i click on a listitem, a model opens with dynamic content of my database. There are ...
1
vote
3
answers
2k
views
How to make popup modal appear when clicking a link using ajax?
I have few links that when user click on the link, it will appear as popup modal. However, what I have done was there modal appear but without content. I am new to ajax so I quite not understand what ...
0
votes
1
answer
238
views
How do I open modal using bootstrap 4 by clicking a hyperlinked table cell and populate data in the model from SQL database using the clicked ID
I have a page which displays data from SQL in a table and on that table one cell is hyperlinked and I want a modal (using bootstrap) to open and fetch data using the ID (the hyperlink value) and ...
0
votes
1
answer
45
views
Popup Multiple Modals from single source page
a custom site on localhost and currently, in the gallery section I have some images and I am targeting to open each image in bootstrap Modal (Unique ID: modal001) and inside the modal a small ...
0
votes
0
answers
47
views
After reload via ajax, no data
I am currently learning ajax and have some problems with it. Whenever I reload the page I get over the data attributes of the modal no more data. Do I give the data wrong to the modal? Or do I have to ...
2
votes
1
answer
2k
views
Bootstrap modal freezing page after close
So I have a page with datatables that opens a modal and you can edit some values there.
When I click de "confirm" button I run an AJAX that works perfectly and in the "success:" I want to dismiss the ...
0
votes
1
answer
686
views
Passing data from a from to bootstrap modal using PHP
I wanted to pass a data to a modal from this textbox using PHP
Textbox code:
<input type="text" id="weights" class="form-control" placeholder="Weight (lbs)" name="weight">
This is the button ...
0
votes
1
answer
7k
views
Close Modal after click on submit button (ajax sucess)
I know this is question already asked a few times in StackOverflow but I cannot make it work in my case with the suggestions given.
So basically I have this modal in my view:
<div id="...
0
votes
2
answers
446
views
Bootstrap modal with feedback not dismissing
I'm using a BS Modal to show the feedback on a newsletter form.
It uses AJAX and PHP to insert the e-mails on DB and returns the STATUS.
The PHP and the AJAX response are working fine, with ...
0
votes
2
answers
3k
views
open modal after form submit, i dont know ajax :(
I am trying to send data from a form to a modal to verify the data and after proced to send, but this part of the data needs the post from thr form, and this one is not working when it call the modal, ...
0
votes
1
answer
1k
views
How handle success load of data with bootstrap modal?
We have:
$('#myModal').modal({
show: true,
remote: '/some/api/url/',
//onComplete: function() ???
//success: function() ???
});
How for example make console.log() every time when ...
2
votes
2
answers
11k
views
Bootstrap modal dialog return message in MVC
I need some help on return success or error message in bootstrap modal dialog from Partial View in mvc.
When click the link in _LayoutAdmin view, partial view Impersonation.cshtml will load into ...
0
votes
1
answer
1k
views
how to load dynamic database on modal window from dynamic table in php
Hello i want to show dynamic data by using MySQL database base on modal window please give me some demo for that. I am trying to show dynamic data on table and as i click on button of any record it ...
1
vote
0
answers
1k
views
Wordpress Custom Post Type and Bootstrap Modal
I am using Advanced Custom Posts and Custom Post Types plugin for my WP site.
How can I make a custom post show on the Bootstrap modal depending on the trigger button? I want it to show inside the ...
0
votes
1
answer
302
views
Twitter Bootstrap repopulate modal with remote page
I'm trying to do something like this:
A modal where I load a remote page to show contacts info and also has a button to enable to edit this info and so this button needs to load a new remote page that ...