在 devexpress tdxdbgrid 中,有没有办法允许 rowselect 和 keypress 事件同时触发?
客户希望选择行,以便他可以知道正在处理左侧的哪条记录,同时能够仅编辑 1 列。
因此,建议如何允许行选择加按键事件触发,或者如何根据是否已输入该行中的另一个单元格来为单元格着色。
Client would like to have row selected so that he can tell what record on the left is being worked on, while being able to edit just 1 column.
so, advise on how to allow row-select plus keypress events to fire, or how to color a cell based on whether another cell in it's row has been entered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好使用带有 OnGetContentStyle 事件的 Styles 集合来为不同的 cxGrid 行着色。
另一种方法是使用 OnCustomDrawCell 事件并自己绘制网格。 我更喜欢使用样式,它更干净。
Coloring distinct cxGrid rows is best done using their Styles collection with OnGetContentStyle event.
Another way is by using OnCustomDrawCell event and drawing the grid yourself. I prefer to use styles, it's cleaner.