View Issue Details

IDProjectCategoryView StatusLast Update
0004628JEDI VCL00 JVCL Componentspublic2008-12-19 01:03
ReporterdeboseAssigned Toobones 
PrioritynormalSeveritytrivialReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version3.36 
Summary0004628: TJvDBFindEdit.DataField cannot be removed if was set once
Descriptionthat's because of SetDataField procedure:
procedure TJvDBFindEdit.SetDataField(const Value: string);
begin
  if Value > '' then
    FDataLink.FieldName := Value;
end;

It should be, because FDataLink can process empty FieldName. (checked in Delphi 2009 and Delphi 7)
procedure TJvDBFindEdit.SetDataField(const Value: string);
begin
  FDataLink.FieldName := Value;
end;
TagsNo tags attached.

Activities

obones

2008-12-19 01:03

administrator   ~0015111

This is now fixed in SVN

Issue History

Date Modified Username Field Change
2008-12-18 16:10 debose New Issue
2008-12-19 01:03 obones Note Added: 0015111
2008-12-19 01:03 obones Status new => resolved
2008-12-19 01:03 obones Fixed in Version => Daily / SVN
2008-12-19 01:03 obones Resolution open => fixed
2008-12-19 01:03 obones Assigned To => obones