delphi cxgrid 增加选择框

cxgrid是自带选择框的表格,开启 设置如下。

 

然后 后台获取 前端选中的记录字段值。用下面语句。

for I := 0 to Gview1.DataController.GetSelectedCount-1 do
begin
// 第一个值选中的 行 。 第二个值要获取值的字段索引 从 0 开始。。这里获取第2个字段
ShowMessage(Gview1.DataController.GetValue(Gview1.DataController.GetSelectedRowIndex(i),1));
end;

posted @ 2024-11-14 10:20  Thenext  阅读(11)  评论(0编辑  收藏  举报