Set repeater to hide a column

Source: Internet
Author: User

1. The JS front-end can be implemented.
<Input type = "button" onclick = "Fun ()"/>
The ID of the table generated by repeater is 'table1'

Funciton fun ()
{
VaR TB = doucment. getelementbyid ("Table1 ");
VaR Len = Tb. Rows. length;
VaR I = 0;
For (I; I <Len; I ++)
{
TB. Rows [I]. cells [1]. setattribute ("display", "NONE ");
}
}

Okay. Suppose the Hidden Column is 2nd, that is, TB. Rows [I]. cells [1].

 

2. Private void rptmain_itemdatabound (Object sender, system. Web. UI. webcontrols. repeateritemeventargs E)
{
If (E. Item. itemtype = listitemtype. Item | E. Item. itemtype = listitemtype. alternatingitem)
{
If (! This. cb_bd.checked)
{
Htmltablecell cell = (htmltablecell) E. Item. findcontrol ("tdbeforedatevalue ");

If (cell! = NULL)
{
Cell. Visible = false;
}
}
}

}

 

 

3. Change <TD> to <TD id = "hiddentd" runat = "server" visible = '<% # This. showtd %>'>

Showtd is an attribute set in Aspx. cs. You can set it to control the <TD> and subsequent <input> output.

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.