多频段 Infragistics UltraGrid 行选择问题
我正在从 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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用
BindingList
作为数据源? 尝试转换为List<>
。如果您必须使用 BindingList<> 然后将 ultragrid 上的 SyncWithCurrencyManager 属性设置为 false。 这告诉网格不要将当前行与CurrencyManager的当前位置同步Are you using
BindingList<>
as your data source? Try converting toList<>
.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