From my gridview "gridPayments" am trying to delete Payments by using the PaymentId, and also am trying to delete the selected gridview row, for this am calling the jQuery function, which is in the custom.js file, from my aspx script page like,
<div class="close1" onclick="DeletePayment(<%# Container.DataItemIndex %>,
<%# Eval("PaymentId") %>);"></div>
and in the DeletePayment method am receiving these valus as
function DeletePayment(index,paymentid) {
//my code for deleting payment..
}
with the paymentid I can delete the payment by calling the webservice from my jQuery, the problem is I want to refresh the GridView after the successful deletion of Payment.
I tried like deleting the gridview row from this method like
index.remove();
but its not working, I dunno how to remove the gridviewrow from this jQuery method...can anyone help me here....