This is a migrated thread and some comments may be shown as answers.

Refesh RadGrid on download

1 Answer 69 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Neo
Top achievements
Rank 1
Neo asked on 02 Feb 2011, 02:45 PM

Hello,

I have requirement to refresh the RADGrid after user download the selection. So i have first column as checkboxes and users selects those checkbox and as per the selection code gets the document and gives it for download to user.


                        Response.ContentType = "text/plain";
                        Response.AddHeader("Content-Disposition", "attachment;filename=" + FileName);
                        Response.ClearContent();
                        Response.Buffer = true;
                        Response.Write(objBuilder.ToString());
                        Response.End();


So now i have to remove the selection after download and make those records of RADGrid with different color to indicate that record is already downloaded. how i can do that ?

1 Answer, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 07 Feb 2011, 05:03 PM
Hello,

Please stick to the following thread:
Link to public post

Thanks
Daniel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Grid
Asked by
Neo
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Share this question
or