1

I have a grid,

 grid = new Slick.Grid("#myGrid", loader.data, columns, options);

How do I get the grid to reload? I'm using a remote model as by the examples as provided by the slickgrid documentation.

I want to force the reload based on clicking a button.

Thanks

KingFish
  • 8,773
  • 12
  • 53
  • 81

1 Answers1

1

I found my problem.

I'm using the remotemodel from Slickgrid's examples. The problem I had was I did not "clear()" the data. The "clear()" function deleted all of the old data it contained. I then invalidated and everything worked.

KingFish
  • 8,773
  • 12
  • 53
  • 81