/**提出来作为公共方法需要传一下参数 * 1、表名 * 2、字段名 * 3、上下移动标志 * 4、挂载的机构或者队伍ID * **/ //置顶/置底 组织机构联系人 function moveDownMax(tableName,fillName,max,id,idFille,fd_id,grid){ $.post($.pathname() +"/ws/orgInDeptService/OrgInDeptService/getMaxSortNo", { "tableName" : tableName, "fillName" : fillName, "max" : max, "id" : id, "idFille":idFille, "fd_id":fd_id }, function(result) { if (result.Msg.sucsess == true) { // 刷新表格数据 grid.rend(); //表格刷新成功后需要设置该行数据被选中 /*setTimeout(function(){ grid.select(rows[0].__index+1); },600); */ } else { top.Dialog.alert("置顶失败!"); } }, "json"); } function getMoveSort(tableName,up_id,fd_id,up_sort,fd_sort,grid,newindex){ $.post($.pathname() +"/ws/Team/TeamService/getMove", { "tableName" : tableName, "mv_id" : up_id, "fd_id" : fd_id, "mv_sort" : up_sort, "fd_sort" : fd_sort }, function(result) { if (result.Msg.sucsess == true) { top.Dialog.alert("移动成功",null,null,null,1); // 刷新表格数据 grid.rend(); //表格刷新成功后需要设置该行数据被选中 setTimeout(function(){ grid.select(newindex); },600); } else { top.Dialog.alert("移动失败!"); } }, "json"); }