用户控制中的 Dundas 图表
我有一个支持 ajax 缩放和滚动的邓达斯图表。 它在网络表单页面中运行良好。但是,一旦我放入用户控件并从另一个页面调用它,我就会收到此错误 -
无法找到回调的目标“ctl00$ContentPlaceHolder1$uc2$chartVisits”或未实现 ICallbackEventHandler。
- 当我尝试使用缩放和滚动功能时。
我可以做什么来解决这个问题。 谢谢。
I have a dundas chart with ajax zooming and scrolling enable.
It works fine in a webform page. But once I put in a user control and called it from another page I get this error -
the target 'ctl00$ContentPlaceHolder1$uc2$chartVisits' for the callback could not be found or did not implement ICallbackEventHandler.
-when I try to use the zoom and scroll functionality.
What can I do to resolve this problem.
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在动态添加使用 AJAX 的控件时看到了此错误。确保在
OnInit
方法中或在Page_Init
事件期间添加任何控件。这在过去已经为我解决了这个问题。I've seen this error when dynamically adding controls that use AJAX. Make sure you're adding any controls in the
OnInit
method, or during thePage_Init
event. That has solved this problem for me in the past.