升级后的 Infragistics 和我的应用程序不再允许 Ultrawingrid 进行编辑
我有一个使用 Ultra Win Grid 的应用程序,并且有一个带有复选框的列。 过去,当我单击复选框时,您可以对其进行编辑,但现在不能了。
已经检查过,我将 CellClickAction 设置为 Edit,将 CellActivation 设置为允许编辑。
我以前用的是6.3,升级到9.1了。 当我更改应用程序以引用新程序集时,问题就开始了。
I have an application that uses the Ultra Win Grid and has a column with a check box in it. It used to be that when I clicked on the check box it would allow you to edit it but now you can't.
Already checked and I am setting CellClickAction to Edit and CellActivation to allow edit.
I used to be using 6.3 and upgraded to 9.1. The problem started as soon I changed the application to reference they new assemblies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加了一个 OnMouseDown 事件处理程序来实现这一点,这样当您右键单击某一行时,就会选择该行。 在某些时候,这被更改为不仅处理右键单击,还处理任何单击。 显然,选择该行会干扰正在编辑的复选框。
修复方法是将其更改为仅右键单击。
Had a OnMouseDown event handler that was put in to make it so when you right clicked on a row that row would be selected. At some point this was changed to not just handle right clicks but any click. Apparently, selecting the row interfered with the check box being edited.
Fix was to change it to only be on right click.