Click here to Skip to main content
15,886,761 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a gridview with some data.I have a small requirement that if I will click on any row of the gridview then it will select and unselect the selected row if I will click outside of the gridview.I did everything except how to unselect the gridview row if I will click on outside of the gridview.Please suggest me...
Posted

1 solution

You can try using :
C#
MyGridView1.SelectedIndex = -1; 


But this is a server side code. You need to fire this on JavaScript page click event(Use __doPostBack( 'target', 'args')). Also check : How to use __doPostBack function[^].


--Amit
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900