You've already forked lazarus-ccr
RxFPC:fix filter null values in RxDBGrid
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5137 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -5167,7 +5167,11 @@ begin
|
||||
Accept:=true
|
||||
else
|
||||
if Filter.IsNull then
|
||||
Accept:=Field.IsNull
|
||||
begin
|
||||
Accept:=Field.IsNull;
|
||||
if not Accept then
|
||||
Break;
|
||||
end
|
||||
else
|
||||
if (Filter.Value <> '') then
|
||||
begin
|
||||
|
Reference in New Issue
Block a user