AjaxControlToolkit AnimationExtender - 在 FormView 插入/更新上显示动画
在我的应用程序中,我有一个允许插入和更新的 FormView。我想显示一条消息,该消息在插入或更新时大约 2-3 秒后消失。我认为 AjaxControlToolkit 中的 AnimationExtender 将是执行此操作的最佳方法,但我不知道如何在更新/插入 FormView 时触发该动画。有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过在 ItemInserted 中调用动画 或 FormView 的 rel="nofollow">ItemUpdated 事件?听起来这对你有用。每次该控件发生更新或插入时都会触发它们。
或者,您可以将
AnimationExntender
的TargetControlID
设置为更新/插入按钮的 ID(该按钮位于FormView
上,带有>CommandName
设置为“插入”或“更新”),然后只需在OnClick
事件中指定所需的动画:请注意,此技术要求您有两个
AnimationExtender
,一个用于“删除”按钮,一个用于“更新”按钮。Have you tried calling the animation in the ItemInserted or ItemUpdated events for the
FormView
? That sounds like it would do the trick for you. They fire every time an Update or Insert occurs from that control.Alternately, you could just set the
TargetControlID
of yourAnimationExntender
to the id of your Update / Insert button (the one's on yourFormView
withCommandName
set to "Insert" or "Update"), then just specify your desired animation in theOnClick
event:Note that this technique requires you to have two
AnimationExtender
s, one for the Delete button and one for the Update button.