程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> aspxgridview CustomButtonCallback 不支持彈出消息提示解決方法

aspxgridview CustomButtonCallback 不支持彈出消息提示解決方法

編輯:ASP.NET基礎
aspxgridveiw是devexpress的一個grid控件,使用起來還不錯。但是今天遇到一個問題,就是不能再 CustomButtonCallback 事件中使用response.write,因為CustomButtonCallback 事件是無刷新的,所以不支持,但是即使使用ScriptManager.RegisterClientScriptBlock(page, page.GetType(), "MyScript", myScript, true)也無濟於事,在網上查了很久,官方有個解決辦法,原文如下:
Hi Troy;
To provide this functionality you should throw an exception in the CustomButtonCallback event handler and process this exception in the CallbackError event handler. Here is the simple sample:
復制代碼 代碼如下:
protected void ASPxGridView1_CustomButtonCallback(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewCustomButtonCallbackEventArgs e)
{
throw new Exception("Here I am!");
}

復制代碼 代碼如下:
if (e.message == 'Here I am!')
{
clientErrorImage.SetVisible(true);
}

If this answer is incomplete or I misunderstood your requirements, please let me know.
Thanks
Kate.
但是實際測試中發現了問題, throw 的時候後台直接拋出錯誤了,,這個方法也行不通,再找。。。
最終還是在官網上找到了解決方案,原文地址,我的代碼如下:
復制代碼 代碼如下:
protected void ASPxGridView1_CustomButtonCallback(object sender, ASPxGridViewCustomButtonCallbackEventArgs e)
{
ASPxGridView view = sender as ASPxGridView;
if (e.ButtonID == "btnAudit")
{
int id = 0;
int.TryParse(view.GetRowValues(e.VisibleIndex, "id").ToString(), out id);
if (true)
{
view.JSProperties["cpErrorMsg"] = "審核成功!";
view.DataBind();
}
else
{
view.JSProperties["cpErrorMsg"] = "此單據已經審核!";
}
}
}

復制代碼 代碼如下:
function EndCallBack(s, e) {
if (s.cpErrorMsg!="") {
alert(s.cpErrorMsg);
}
}

這裡要注意:JSProperties的參數必須以小寫"cp"開頭。
測試通過,呵呵
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved