基于 Dundas 图表回调更新 gridview
我有一个邓达斯饼图,单击该饼图时会发出一个客户端回调,该回调会更新与其关联的另一个图表。 基本上它就像一个向下钻取的东西。 我还想根据用户对饼图的选择来更新我的网格视图。 但由于图表的更新是使用 Dundas 客户端回调完成的,我无法重新绑定我的 Gridview。 有什么办法可以做到吗? 。
I have a dundas pie chart which when clicked issues a client callback which updates another chart associated with it. Basically its like a drill down thing. I also want to update my gridview based on the user's selection of the pie. But since the update of chart is being done using dundas client callback I'm unable to rebind my Gridview. Is there any way to do it? .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为“解决”它的唯一方法是使用 OnClick ajax 回调和
yourChart.CallbackManager.UpdateClientControl(yourGrid) 方法。
但网格可能会在回发时恢复。 原因是 Dundas Charts 在非标准场景方面是一个蹩脚的东西,他们的支持对你没有帮助。 如果可以的话不要使用它。
I think the only way to "solve" it would be using OnClick ajax callback and
yourChart.CallbackManager.UpdateClientControl(yourGrid) method.
But the grid might revert on postback. The reason is that Dundas Charts is a crappy piece of shit when it comes to non-standard scenarios and their support won't help you. Don't use it if you can.