loadComplete: function () {
jQuery("#list1").trigger("reloadGrid"); // Call to fix client-side sorting
//Set Tooltips ...
var ids = "" + $("#list1").getDataIDs(); //list1 is the table name which is also rendered as JqGrid
var arrIds = ids.split(",");
for (var intRow = 0; intRow < ids.length; intRow++) {
$("#list1").find("#" + intRow).find("td:eq(1)").attr("title",
$("#list1").find("#" + intRow).find("td:eq(6)").html());
//If little JQuery is more kind enough to understand custom attributes, the following compact trick should work in lieu of each/each nesting above. --LD
//$("#list1").find("#" + intRow).find("td [aria-describedby='list1_mysitename']").attr("title", "");
}