gridview check all checkbox

M

Mike

I have gridview that has a checkbox in the header. This checkbox allows the user to 'check all' rows in the gridview.
How can I have all my rows with checkboxes checked by default when the gridview loads?
 
M

Mike

I figured it out.

in the grid_RowDataBound() i did this

foreach (GridViewRow row in Grid.Rows)
{
CheckBox chkBox= (CheckBox)row.FindControl("checkBoxStuff");
chkBox.Checked = true;
}
I have gridview that has a checkbox in the header. This checkbox allows the user to 'check all' rows in the gridview.
How can I have all my rows with checkboxes checked by default when the gridview loads?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top