检测所有 ASP.NET 生成的 Javascript 何时运行
我目前有一个包含 RadTreeView 的页面。 RadTreeView 的每个节点上都有一个 ASP.NET Ajax CollapsiblePanelExtender。在代码隐藏中,我根据某些业务逻辑展开了某些面板并折叠了某些面板。有没有办法检测所有 ASP.NET 生成的 Javascript(CollapsiblePanelExtender 的折叠/展开)何时运行?我需要对元素采取行动,但直到所有扩展和折叠都发生为止。
I currently have a page that contains a RadTreeView. On each node of the RadTreeView is an ASP.NET Ajax CollapsiblePanelExtender. In the code-behind I have certain panels expanded and certain panels collapsed based on some business logic. Is there a way to detect when ALL ASP.NET-generated Javascript (collapsing/expanding of CollapsiblePanelExtender) has run? I need to act on the elements but NOT until all expanding and collapsing has taken place.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CollapsiblePanelExtender 使用 Sys.Application.init 事件 进行初始化。如果您使用了 Sys.Application.load 事件,您可以保证你的代码在他们的后面运行。
The CollapsiblePanelExtender initializes by using Sys.Application.init Event. If you used the Sys.Application.load Event, you could guarantee your code ran after theirs.