时间:2021-05-28
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"开头。
测试通过,呵呵
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
有时,我们在运行网站时,出现ServiceUnavailable了,如果重启IIS,则会出现错误提示不支持此接口,具体解决方法如下:在运行里依次执行下面注册mi
苹果手机充电时提示可能不支持此配件怎么解决?如果在为iPhone充电时出现提示“可能不支持此配件”,这种情况下设备将停止充电。此提示可能
迅雷磁力链接下载失败解决方法来咯~有很多网友使用迅雷下载磁力链接都提示失败,该如何解决呢?难道迅雷不支持磁力链接了?详细内容,请看下文吧。 法一、用QQ旋
目前可以这么解决,判断浏览器支不支持这个方法,如果支持就不管;如果不支持,就在document对象里加入getElementsByClassName这个方法,这
一、元素查找问题1.document.all[name](1)现有问题:Firefox不支持document.all[name](2)解决方法:使用getEle