多频段 Infragistics UltraGrid 行选择问题

发布于 2024-07-24 14:24:32 字数 189 浏览 13 评论 0原文

我正在从 SQL 引入数据,这些数据将显示在多波段超级网格中。 这很好用。 在这方面它做了它应该做的事情; 但是,如果我尝试在任何频段中选择第一行以外的行,则会冻结程序。

加载网格时,第一行似乎处于活动状态(文本为粗体),因此我尝试对活动行进行更新。 这消除了活动行,但没有解决问题。

预先感谢您的任何帮助!

I am bringing in data from SQL that is to be displayed in a multi band ultragrid. This works great. It does what it is supposed to in this regard; however, if I try to select a row other than the first one, in any band of the bands, it freezes the program.

When the grid is loaded, the first row seems to be active (text is bold), so I tried doing an update on the active row. This got rid of the active row, but didn't fix the problem.

Thank you in advance for any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-07-31 14:24:32

您是否使用 BindingList 作为数据源? 尝试转换为 List<>。如果您必须使用 BindingList<> 然后将 ultragrid 上的 SyncWithCurrencyManager 属性设置为 false。 这告诉网格不要将当前行与CurrencyManager的当前位置同步

Are you using BindingList<> as your data source? Try converting to List<>.If you have to use BindingList<> then set the SyncWithCurrencyManager property on ultragrid to false. This tells the grid not to synchronize the current row with the current position of the CurrencyManager

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文