hello James..I got my objective done, but not the way I have posted here as question. All i needed was a button on the radGrid to do the Export, and that also without going to each of the individual RadGrids (on various pages). So when I added a button along with its handler, upon Click, various events would fire in this order:
-Page OnLoad
-RadGridDP OnLoad
-Button_Click
-RadGridDP OnNeedDataSource
So entire RadGrid would rebind and Export won't happen.
But all i had to do is this:
and this script on the page consisting of the grid:
and it started to work. Infact custom controls can be added to MasterTableView.CommandItems via setting CommandItemTemplate. i.e.
am not sure, but may b the way I was doing it earlier, was wrong.