ECLIPSE RCP 应用程序:编辑和更新表查看器
我通过向列添加 setEditingSupport 使表查看器可编辑。但这似乎还不够。如果我想将修改后的字段保存在数据库中,如何访问它们? 我可用的只是原始字段。 我有一个名为“保存”的工具栏图标,用于保存当前行中的所有更改。但这对我来说不可用。我应该使用单元格修改器吗?如何使用它?
I made the table viewer editable by adding setEditingSupport to the columns. But that seem to be not enough. How to access the modified fields if I want to save them in the DB?
What is available to me is only the original fields.
I have a toolbar icon called 'save' to save all my changes in the current row. But that is not available to me. Should I use cell Modifier? How to use that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
EditingSupport
的setValue
方法中执行此操作。Do it in your
EditingSupport
'ssetValue
method.