I have a radgrid, click a hyperlink column on the radgrid opens a rad window, after I edit the text field on the rad window, I need to close the radwindow and refresh the grid to show the text change. The grid has mutiple pages. If I was on page 5 before open the radwinow, after close radwindow, grid gets refreshed and goes to page 1. Is there anyway that I can let the grid stays on page 5 after radwindow close?
Thanks!
<telerik:GridHyperLinkColumn DataNavigateUrlFields="TagID, LanguageID2" SortExpression="TagName" ShowFilterIcon="false"
DataTextField="TagName" HeaderText="Tag Name" FilterControlWidth="100px" UniqueName="TagName"
AutoPostBackOnFilter="true" CurrentFilterFunction="Contains"
DataNavigateUrlFormatString="javascript:function anon(){{window.radopen('MyPopUp.aspx?TID={0}&LID={1}','TranslationView');}};anon();">
<HeaderStyle Width="100px" />
</telerik:GridHyperLinkColumn>
<script type="text/javascript"> function OnClientClose(sender, args) { top.location.href = top.location.href; } </script>