Friday, May 17, 2024
Homepage · c#
 Popular · Latest · Hot · Upcoming
52
rated 0 times [  59] [ 7]  / answers: 1 / hits: 19976  / 8 Years ago, mon, february 29, 2016, 12:00:00

I am working on the two different partial views which is work together.



When using multiple modals on one page open at the same time on top of each other dismissing the topmost with data-dismiss=modal will hide all active modals,



In my case I'm using a component inside a modal dialog box, that in turn uses modal dialog boxes.



You can find the things in image, 3 different views,




  1. Black in the Background,


  2. Edit (Partial view),


  3. Warning Message(Partial view).




Multiple model open at the same time but need to close the expected, which is topmost/current not all models.



enter




HTML




<div class=modal fade id=myModal ng-model=mymodel>
<div class=modal-dialog>
<div class=modal-content>
<div class=modal-header>
<button type=button class=close data-dismiss=modal aria-label=Close><span aria-hidden=true>&times;</span></button>
<h2 class=modal-title>Are you sure want to Change in Amount?</h2>
</div>
<div class=modal-body>
<p class=text-danger style=font-size:initial;color:black;font:200>Click save to change the Amount.&hellip;</p>
</div>
<div class=modal-footer>
<button type=button class=btn btn-inverse onclick=savedata()>Save</button>
<button type=button data-dismiss=modal class=btn btn-inverse>Cancel</button>
</div>
<div class=row-fluid span12>

</div>
</div>
</div>
</div>

More From » c#

 Answers
8

Remove data-dismiss=modal from the button and Using Jquery you can close a particular modal.Create a function and have the below code inside the function and call that function on the close button click



$('#modalid').modal('hide');

[#63115] Friday, February 26, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
mustafaericho

Total Points: 322
Total Questions: 103
Total Answers: 110

Location: Montenegro
Member since Thu, Jun 16, 2022
2 Years ago
mustafaericho questions
Mon, May 31, 21, 00:00, 3 Years ago
Sun, May 23, 21, 00:00, 3 Years ago
Sat, Feb 13, 21, 00:00, 3 Years ago
Sat, Jan 2, 21, 00:00, 3 Years ago
Thu, Nov 12, 20, 00:00, 4 Years ago
;