Implement server-side full select checkbox in the DataGrid

Source: Internet
Author: User

 

Select All button events:

Private   Void Butall_click ( Object Sender, system. eventargs E)
{
System. Web. UI. webcontrols. checkbox;
If (Butall. Text = " Select All " )
{
Foreach (Maid In Dg_list.items)
{
Checkbox = (Checkbox) datagriditem. findcontrol ( " Checkbox2 " );
Checkbox. Checked = True ;
}
Butall. Text = " Full elimination " ;
}
Else
{
Foreach (Maid In Dg_list.items)
{
Checkbox = (Checkbox) datagriditem. findcontrol ( " Checkbox2 " );
Checkbox. Checked = False ;
}
Butall. Text = " Select All " ;
}
}

 

Select All checkbox events in the DataGrid column header:

Private   Void Dg_list_itemcreated ( Object Sender, system. Web. UI. webcontrols. datagriditemeventargs E)
{
If (E. Item. itemtype = Listitemtype. header)
{
Checkbox CBK = (Checkbox) E. Item. findcontrol ( " Checkbox1 " );
CBK. checkedchanged + = New Eventhandler (butall_click );
}
}

 

 

Self: http://www.cnblogs.com/pi1102cn/archive/2006/03/01/340259.html

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.