关于这个问题: Have cxGrid expand current date 和解决方案:
procedure TForm1.FormCreate(Sender: TObject);
begin
with cxGrid1DBTableView1 do
begin
DataController.DataSource.DataSet.Locate('YourDateFieldName',DateTimeToStr(Date),
[loPartialKey]);
ViewData.Records[DataController.FocusedRowIndex].Expand(True);
end;
end;
如果数据库中的“YourDateFieldName”字段是字符串类型(日期存储为字符串),您将如何将其传递给上面示例中的网格?