gpt4 book ai didi

javascript - 如何更改 aspxgridview 批量编辑浏览器警报和弹出消息

转载 作者:行者123 更新时间:2023-11-29 23:57:59 27 4
gpt4 key购买 nike

我正在使用 aspxgridview,在那个 gridview 中我正在使用 batchedit。

我更改了 gridview 中的一些值,如果我要转到下一个 UI,则意味着它会显示浏览器警报。

我想通过使用 JsProperties 或任何人都可以帮助我的东西将浏览器警报显示到弹出窗口中。

这是我的浏览器提醒

enter image description here

我想像这样显示我的弹出窗口。这是行更新事件的示例。在这里,我在客户端使用 jsproperties。

enter image description here

最佳答案

Javascript

function onInit(s, e) {
s.GetUploadControl().viewManager.showValidationError = function (error) {
lbl.SetText(error.text);
popup.ShowAtElement(s.GetMainElement());
//console.log('custom processing: ' + error.text)
};
}

aspx代码:

<dx:ASPxPopupControl ID="popup" runat="server" ClientInstanceName="popup" PopupHorizontalAlign="Center" 
PopupVerticalAlign="Middle" AllowDragging="true" HeaderText="Error">
<HeaderStyle ForeColor="Red" />
<ContentCollection>
<dx:PopupControlContentControl>
<dx:ASPxLabel ID="lbl" runat="server" ForeColor="Red" ClientInstanceName="lbl"></dx:ASPxLabel>
</dx:PopupControlContentControl>
</ContentCollection>
</dx:ASPxPopupControl>

在 binaryimagecolumn 上提到这个

 <ClientSideEvents Init="onInit" />

关于javascript - 如何更改 aspxgridview 批量编辑浏览器警报和弹出消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41259127/

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