Click here to Skip to main content
15,881,580 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i want to access all checked row in RadGridView(Telerik component) via GridViewCheckBoxColumn. Note : User select checkbox at run time ... 

Screenshot


What I have tried:

C#
<pre> 

string s1 = "";

for(int i =0; i <= radGridView1.Rows.Count-1 ; i++ )
{
if(radGridView1.Rows[i].Cells[0].Value.ToString() !="true" && radGridView1.Rows[i].Cells[3].Value.ToString() != null && radGridView1.Rows[i].Cells[3].Value.ToString() != "")
{
s1+=","+ radGridView1.Rows[i].Cells[3].Value.ToString();
}
}
Posted
Updated 11-Dec-19 4:14am

1 solution

 
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