summaryGroup

时间:2018-04-18 14:40:33

标签: delphi tcxgrid

我有一个cxGrid,如下图所示。 我想在第二列的组头中连接文本,比如用红色写的。

你能帮帮我吗?我试图在GetText方法中修改摘要中的文本,但我没有找到连接函数。

enter image description here

1 个答案:

答案 0 :(得分:0)

根据DevExpress Support Center,您可以使用网格的GroupGetDisplayText方法自定义组标题中的文本。一个例子是:

procedure TForm1.cxGrid1DBTableView1GroupGetDisplayText(
  Sender: TcxCustomGridTableItem; ARecord: TcxCustomGridRecord;
  var AText: string);
begin
  if ARecord is TcxGridGroupRow then
    AText := AText + 'Some additional text for testing';  // You can replace this with code to represent your time intervals
end;