gpt4 book ai didi

javascript - ASPxGridView 停止回调

转载 作者:行者123 更新时间:2023-11-30 09:01:54 28 4
gpt4 key购买 nike

有没有办法停止处理由 ASPxGridView 网格中定义的自定义按钮发起的回调?

我的代码中有这个:

BeginCallback="function(s, e) {
var response = confirm('Really want to do this?');
//if response = false, I need to stop processing...
}"

我需要两种解决方案之一:

  1. 立即停止调用(服务器不会被命中)或
  2. 通知服务器调用已取消,以便服务器可以快速退出回调处理程序。

谢谢。

最佳答案

你可以做到这一点..

<ClientSideEvents CustomButtonClick="function(s, e)
{
if(e.buttonID=='Send')
{
if (confirm ('Are you sure?'))
{
e.processOnServer = true;
}
}
else
{
e.processOnServer = true;
}
}
" />

Credit

关于javascript - ASPxGridView 停止回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8592457/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com