I used jquery form plugin to upload and it worked fine, for suppose i want to delete the uploaded file, again i need to make a call to controller and update view again ? in success function of this plugin how can it be done?
script is as :

     $(function() {

    $('#MyGrid').delegate('a.remove', 'click', function() {
        alert("del");
       // e.preventDefault();
         jQuery.ajax(
        {
            type: "POST",
            url: "Upload/Remove",
            data: "removefile=" + htmlstring
        });
        $(this).closest('tr').remove();
    });
        $("#uploadForm").ajaxForm({
            iframe: true,
            dataType: "xml",
            url: "Upload/Index",
            success: function(result) {

    ('#MyGrid tbody').append('<tr><td> ' + stringhtml+ ' </td><td><a href="#" 
            class="remove">Remove</a></td></tr>');
          });
});

now once i click Remove, it should make ajax call to controller, for this i tried added click function in which i made ajax call is it correct way to add because it is not making call to server side. thanks, michaeld

link|improve this question

45% accept rate
What errors are you seeing in the JavaScript console? – Ragesh Jul 15 '11 at 12:19
@Ragesh : i have edited the code. can you comment on that – michael Jul 15 '11 at 12:33
Does the "del" alert show? Is htmlstring assigned? Again, the easiest way is to check your JS console for errors (Ctrl+Shift+J in Firefox). Does it report any errors? – Ragesh Jul 15 '11 at 13:20
alert msg is popping , but htmlstring is not assigned ,that is what i want to send to controller how can i do that ,just to have an idea i have added in the code ,also the error console showing the same"htmlstring not defined". – michael Jul 19 '11 at 5:14
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.