将编辑的信息保存在 AspxGridView 中
我正在使用 DevExpress AspxGridView,其中包含带有复选框的列。我设法使复选框可编辑,但是我找不到检索网格中控件的方法。我发现网格具有 GetRow 和 GetRowValues 等方法,但它们从数据源检索信息,这对我来说没有用。
如果您想知道为什么我不使用每行上带有“编辑”按钮的内置编辑方法,那是因为我希望用户立即编辑复选框,并且我希望在单击“编辑”之外的按钮后保存所有更改网格。
I'm using a DevExpress AspxGridView that has columns with checkboxes. I managed to make the checkboxes editable, however I can't find a way to retrieve the controls in the grid. I found that the grid has methods like GetRow and GetRowValues but they retrieve information from the datasource which isn't useful to me.
If you're wondering why I'm not using the built-in editing method with Edit buttons on each row, it's because I want the user to instantly edit the checkboxes and I want all the changes to be saved after clicking a button outside the grid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您已将一个复选框添加到该列的 DataItemTemplate 容器中。如果是这样,要获取编辑器实例,请使用 ASPxGridView 的 FindRowCellTemplateControl 方法。所请求功能的示例可以在以下位置找到:
获取/设置aspxgridview 复选框中的值
I think that you've added a checkBox to the column's DataItemTemplate container. If so, to obtain an editor instance, use the ASPxGridView's FindRowCellTemplateControl method. An example of the requested functionality can be found at:
to get/set values in checkbox of aspxgridview