DesignTime DisplayLabel is overwritten

Issue #267 closed
VlaPr created an issue

Why the designtime setting of DisplayLabel is overwritten? It is probably bug.

procedure TCustomVirtualDataSet.RebuildFieldCache;
var
  i: Integer;
begin
  fFieldsCache.Clear;
  for i := 0 to Fields.Count - 1 do
  begin
    Fields[i].DisplayLabel := FieldDefs[i].DisplayName;
    fFieldsCache.Add(Fields[i].FieldName, Fields[i]);
  end;
end;

Comments (1)

  1. Log in to comment