Ignore:
Timestamp:
Jun 16, 2011, 12:18:21 PM (13 years ago)
Author:
george
Message:
  • Modified: Optimalized reloading of columns list in item list.
  • Fixed: Add and modify function.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UDataTypes.pas

    r21 r22  
    8181    function CreateControl(Owner: TComponent): TWinControl; override;
    8282    procedure SetupControl(Control: TWinControl); override;
     83    function GetControlValue(Control: TWinControl): string; override;
    8384    procedure Load(CellValue: string); override;
    8485    procedure LoadDef(ACustomType: Integer); override;
     
    270271end;
    271272
     273function TDataTypeRelationOne.GetControlValue(Control: TWinControl): string;
     274begin
     275  Result := TEditButton(Control).Text;
     276end;
     277
    272278procedure TDataTypeRelationOne.Load(CellValue: string);
    273279begin
Note: See TracChangeset for help on using the changeset viewer.