Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to place a modal dialog within a form to aid in filling in the fields. If I place the button outside of the form, it works as expected. If I place the button inside the form, the form gets posted once it's clicked.

Click event

$("#openList").button().click(function () {
    $("#list").dialog("open");
});

Functional

<div id="list" title="Select one">
    @{ Html.RenderPartial("Index/_ListDialog"); }
</div>
<p>
    <button id="openList">Open List</button>
</p>

@using (Html.BeginForm("Index", "Home", FormMethod.Post))
{    
    <div id="ChildFields">
        @{ Html.RenderPartial("Index/_Fields"); }
    </div>
    @Html.HiddenFor(model => model.otherData) 

    <input type="submit" value="Submit" />    
}

Posts form

<div id="list" title="Select one">
    @{ Html.RenderPartial("Index/_ListDialog"); }
</div>

@using (Html.BeginForm("Index", "Home", FormMethod.Post))
{    
    <p>
        <button id="openList">Open List</button>
    </p>
    <div id="ChildFields">
        @{ Html.RenderPartial("Index/_Fields"); }
    </div>
    @Html.HiddenFor(model => model.otherData) 

    <input type="submit" value="Submit" />    
}

This is an abbreviated generic version of a lengthy form. In practice the button is intended to be in the middle of the form between sets of fields. Is it possible to place the button within the form without it causing the form to post?

share|improve this question

2 Answers

up vote 2 down vote accepted

Add return false; to the end of your click handler.

share|improve this answer
Thanks, this did the trick. – user1013571 Mar 26 '12 at 17:27

Try this:

$("#openList").button().click(function (e) {
    e.preventDefault();
    $("#list").dialog("open");
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.