动态编辑和更新 cfgrid 值
我需要通过双击值来编辑 cfgrid 中一(或多)列的值,然后按 Enter 键,cfgrid 应使用新值更新数据库。
我在 flex datagrid 中看到了这种功能。预计也会有类似的能力。
任何帮助表示赞赏。
I need to edit the values of one (or more) column in the cfgrid by double-clicking the value and on pressing enter the cfgrid should update the db with the new value.
I have seen this capability in the flex datagrid . A similar capability is expected.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是 CF 的新手,所以我终于知道了你是如何做到这一点的:你需要添加属性 selectMode=edit 而且你需要添加 onchange 属性。
例如:
onchange = "cfc:getCalculatorData.editCategory({cfgridaction},{cfgridrow},{cfgridchanged})">;
此外,您可以在 cfc editLocation 中编写更新查询
cfc 函数的示例为:
I am newbie to CF so i finally found out how you do that: you need to add the attribute selectMode=edit and moreover you need to add the onchange attribute.
eg:
onchange = "cfc:getCalculatorData.editCategory({cfgridaction},{cfgridrow},{cfgridchanged})">
Further you write your update query in the cfc editLocation
Example for the cfc function is :