Id like to have a save and save (add another) button. The first saves an item, but stays on the same item, the other button saves the item, but displays the same template to add a new item. The save (add another) button is there to save time. How can I have the submit binding in knockout.js handle these two different instances?
<form class="box clearfix" action="@Request.RawUrl" data-bind="submit: save">
    @Html.Partial("EditorTemplates/Division", Model.Division)
    <div class="control-group">
        <div class="controls">
            <button type="submit" class="btn btn-inverse">
                <i class="icon-save icon-white"></i> Save</button>
            <!-- <button type="submit" class="btn btn-inverse">
                <i class="icon-save icon-white"></i> Save (Add Another)</button> -->
        </div>
    </div>
</form>
 
     
    