I have a page that has three radgrids on it. When I first come into a page I have two dropowns and a textbox that collect data from the user and a button that executes a search. I do not want any of the grids to load until I have clicked the execute button and then I want one of the grids to load. Everything works fine, but when I add
ClientEvents OnCommand="RaiseCommand"
to any of the grids client settings, the grid that this has been added to tries to load on page_load before I have collected any data or clicked the button, which causes an error becuase there is no data for the grid.
Is there a way to stop this automatic grid loading when using the clientevents oncommand.
Thank you.
Aaron