https://stackoverflow.com/questions/1277578/showing-cell-content-on-hint-in-devexpress-grid
procedure TForm1.cxGrid1TableView1Column3GetCellHint(
Sender: TcxCustomGridTableItem; ARecord: TcxCustomGridRecord;
ACellViewInfo: TcxGridTableDataCellViewInfo; const AMousePos: TPoint;
var AHintText: TCaption; var AIsHintMultiLine: Boolean;
var AHintTextRect: TRect);
begin
AHintText := VarToStr(ARecord.Values[Sender.Index]);
AIsHintMultiLine := True;
end;
保存
DataControler.Post;