Click here to Skip to main content
15,881,044 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a MVC view page in which there is a HTML ActionLink and on click of that action link, i want to open a new popup window without closing the previous one. In this new popup window i want to show a MVC view but i am unable to do that.

What I have tried:

Now i am using the following codes to do that:
JavaScript
<script type="text/javascript">
$(function () {
    $('a.edit').click(function () {
        var url = $(this).attr('href');
        window.showModalDialog(url, "#1", "dialogHeight:600px;dialogHeight:400px;dialogWidth:700px;dialogTop:300px;dialogLeft:400px;edge:Raised;center:Yes;help:No;Resiable:No;Status:No;");
    });
    return false;
});
</script>

HTML
@Html.ActionLink("Answer", "getanswer", new {controller="Question"}, new {target="_blank",@class="edit"})

But the problem is that instead of opening as a popup window it is opening in a new tab window. So i an unable to find where i am doing wrong.
And i also tried window.open instead of window.showModalDialog but i am getting the same result.

So if anybody can find where i am doing wrong or how to solve this problem please help me to resolve.
Posted
Updated 12-Dec-16 19:57pm

HTML
<pre><h2>Index</h2>
<a href="#" name="edit" id="edit" onclick="popup('http://localhost:51337/Home/PopupWindow');">click me</a>
<script>
    function popup(url)
    {
         window.open(url, "#1", "dialogHeight:600px;dialogHeight:400px;dialogWidth:700px;dialogTop:300px;dialogLeft:400px;edge:Raised;center:Yes;help:No;Resiable:No;Status:No;");
   }
    
</script>
 
Share this answer
 
Comments
leomaye 18-Mar-20 20:53pm    
Works for me!!! Thanks a lot.
Please implement and dialogue plugin if you want to open in the same window.

You can try below jquery UI plugin

Dialog | jQuery UI[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900