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