Topic: How to restart GridView Results ?

Hi,
I've enabled Auto execution query on a GridView.
Also I have a Search button that can change GridView results with some filters.
So I need to know how can I wrote a script to restart GridView to show all records ?!

Thanks a lot

Re: How to restart GridView Results ?

usually you do not need to use "Auto execution" and Search button together.


you can clear values from filter control then update TableGrid


Form1.Edit1.Clear;
Form1.Edit2.Clear;
Form1.TableGrid1.dbUpdate;
Dmitry.