操作表格 document.all.tbl1.rows[0].cells[1].innerHTML="";
//屏蔽右键系统菜单
document.getElementById("ASPxRoundPanel1_ASPxGridView1").oncontextmenu=function(event) {
if (document.all) window.event.returnValue = false;
else event.preventDefault();
};
//删除提示
document.getElementById("ASPxRoundPanel1_ASPxGridView1").onmouseup=function(oEvent) {
if (!oEvent) oEvent=window.event;
if (oEvent.button==2) {
if(confirm('你确定要删除吗?'))
{
ASPxGridView1.GetRowValues(ASPxGridView1.GetFocusedRowIndex()
,"id;ErrContext",SingleClick);
}
}
}