filter header lost after refreshing grid

Hi

I am using a php script to display both the config and the data for loading a grid.

On first load the in-header filters are displayed and everything works fine.

On refresh however the in-header filters disappear. I have tried many thing but cannot get them to redisplay.

To do the refresh we use:

myGrid.clearAndLoad("php/loadNruList.php?act=list", afterRefreshGrid,"js");

This is a huge problem for us as we have just spent a month implementing this “config and data” approach throughout our entire app.

kind regards
Grant

Please try to use:
myGrid.clearAll(true);
myGrid.load(“php/loadNruList.php?act=list”, afterRefreshGrid,“js”);
instead of
myGrid.clearAndLoad(“php/loadNruList.php?act=list”, afterRefreshGrid,“js”);