For the following:

@Ajax.ActionLink("Delete", "Delete", "AdminGroup", new { id = item.AdminGroupId }, new AjaxOptions { Confirm = "Delete?", HttpMethod = "Delete", OnSuccess = "function() { $(this).parent().parent().remove() }" })

OnSuccess get's errored out. please help. thanks

link|improve this question

feedback

1 Answer

up vote 18 down vote accepted

It should be like this:

@Ajax.ActionLink(
    "Delete", 
    "Delete", 
    "AdminGroup", 
    new { id = item.AdminGroupId }, 
    new AjaxOptions { 
        Confirm = "Delete?", 
        HttpMethod = "Delete", 
        OnSuccess = "handleSuccess" 
    }
)

where you have:

<script type="text/javascript">
function handleSuccess() {
    // TODO: handle the success
    // be careful because $(this) won't be 
    // what you think it is in this callback.
}
</script>

Here's an alternative solution I would recommend you:

@Html.ActionLink(
    "Delete", 
    "Delete", 
    "AdminGroup", 
    new { id = item.AdminGroupId }, 
    new { id = "delete" }
)

and then in a separate javascript file AJAXify the link:

$(function() {
    $('#delete').click(function() {
        if (confirm('Delete?')) {
            var $link = $(this);
            $.ajax({
                url: this.href,
                type: 'DELETE',
                success: function(result) {
                    $link.parent().parent().remove();
                }
            });
        }
        return false;
    });
});
link|improve this answer
is there anyway to return this "$(this).parent().parent().remove(); : from the controller and execute it? – Shane Km Feb 2 '11 at 18:12
@Shane, in your controller you could return JavaScript("$(this).parent().parent().remove();"); but be careful because $(this) might not point to what you could expect. Personally I wouldn't have the controller return javascript. I would handle it in the success callback. – Darin Dimitrov Feb 2 '11 at 18:17
@Darin, should I think that Darin doesn't recommend Ajax.ActionLink? thanks – Aureliano Buendia Jul 3 '11 at 16:14
AJAXifying the links doesnt work for the rows in the webgrid when executed in $(document).ready, where to do this? – Malkier Feb 25 at 12:55
feedback

Your Answer

 
or
required, but never shown

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