zoukankan      html  css  js  c++  java
  • DataGrid中使用CheckBox的CheckedChanged事件

    使用DataGrid的过程中常会用到CheckBox控件,并使用它的CheckedChanged事件。使用如下:

    1、CheckBox控件需要设置AutoPostBack="true"
    <asp:CheckBox id="chbIsActive" runat="server" AutoPostBack="true"></asp:CheckBox>

    2、CheckBox控件的事件须在DataGrid的ItemCreated定义才能生效
            private void grdStructure_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
            
    {
                
    if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
                
    {
                    
                    CheckBox chbIsActive 
    = e.Item.FindControl("chbIsActive"as CheckBox;
                    chbIsActive.CheckedChanged 
    += new EventHandler(chbIsActive_CheckedChanged);
                }

            }

    3、编写事件代码
            private void chbIsActive_CheckedChanged(object sender, EventArgs e)
            
    {
                CheckBox chbIsActive 
    = (CheckBox)sender;

                Guid structureUID 
    = new Guid(chbIsActive.Attributes["StructureUID"]);
                
    bool isActive = chbIsActive.Checked;

                IPMStructureManager manager 
    = PMStructureManagerFactory.GetInstance();
                manager.SetActive(structureUID, isActive);

                
    this.Binding();
            }

  • 相关阅读:
    hp的金牌服务
    Ubuntu小技巧
    ubuntu 下安装flash player
    Ubuntu 10.10下利用PPA源三条命令安装飞信步骤
    Ubuntu10.10下配置android的Eclipse开发环境
    ubuntu安装WineQQ
    安装phpmps
    Ubuntu下eclipse安装ADT时遇到org.eclipse.wst.sse.core 0.0.0缺失的一个解决方案
    Ubuntu 中安装 Eclipse
    HDU1007
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760271.html
Copyright © 2011-2022 走看看