At the moment I am doing drag & drop to GridView rows which sends the new row order to a WebMethod in order to update the database according to these new values.
So, how can I update the GridView in the web form after calling the WebMethod? Considering that I can't access to any of the webform elements from a WebMethod.
Web Method:
[WebMethod]
public static void GridViewCarriersReorders(string Reorder)
{
Boolean result;
string[] ListID = Reorder.Split('|');
transactions tr = new transactions();
result = tr.updateLcrPriorities(ListID);
//updateGridViewCarriers(); //SOMETHING LIKE THIS IS NEEDED TO DO THE BINDING
}
Thanks a lot for your help and comprehension.
UPDATE: This is how I am calling the webmethod:
$.ajax({
type: "POST",
url: "lcrP.aspx/GridViewCarriersReorders",
data: '{"Reorder":"' + strorder + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (msg) {
$.jGrowl("The Carriers priority was successfully updated", { theme: "succeeded" });
}
})