View Issue Details

IDProjectCategoryView StatusLast Update
0002084JEDI VCL00 JVCL Componentspublic2004-09-03 06:18
ReporterrmcclintockAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0002084: JvMemoryData only filters on one character
DescriptionThis may be specific to the JvDBFindEdit component, when filtering on a field, the dataset only responds to the first character. Additional characters added in the JvDBFindEdit component have no further effect on the filtered rows.
Additional InformationThis would appear to be the result of a problem in the SetFiltered procedure. Here is a snippet from the current procedure:

if Filtered <> Value then
begin
  inherited SetFiltered(Value);
  First;
end;

Looking at some other components, I believe that this ought to be:

if Filtered <> Value then
begin
  inherited SetFiltered(Value);
end;
First;

This does seem to correct the behavior in the interaction with the DBFindEdit component.
TagsNo tags attached.

Activities

AHUser

2004-09-03 06:18

developer   ~0005157

Fixed in CVS.

Issue History

Date Modified Username Field Change
2004-08-22 16:27 rmcclintock New Issue
2004-09-03 06:18 AHUser Status new => resolved
2004-09-03 06:18 AHUser Resolution open => fixed
2004-09-03 06:18 AHUser Assigned To => AHUser
2004-09-03 06:18 AHUser Note Added: 0005157