gridview动态子表

前台代码
  <div>
        <asp:LinkButton ID="lbtnAddRow" runat="server" Width="80px" OnClick="lbtnAddRow_Click">添加行</asp:LinkButton>
        <asp:LinkButton ID="btnDeleteRow" runat="server" OnClick="btnDeleteRow_Click" OnClientClick="return confirm('确定要删除选中行吗?');">删除选中行</asp:LinkButton>
        <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4">
            <EmptyDataTemplate>
                <table>
                    <tr>
                        <th>
                            ID
                        </th>
                        <th>
                            序号
                        </th>
                        <th>
                            <input id="empCheck" type="checkbox" οnclick="SelectAll(this)" />
                        </th>
                        <th>
                            工号
                        </th>
                        <th>
                            姓名
                        </th>
                    </tr>
                </table>
            </EmptyDataTemplate>
            <Columns>
                <asp:TemplateField HeaderText="ID">
                    <ItemTemplate>
                        <asp:Label ID="lblID" runat="server" Text='<%#Eval("ID") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="序号">
                    <ItemTemplate>
                        <%# Container.DataItemIndex + 1%>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <HeaderTemplate>
                        <input id="chkAll" type="checkbox" οnclick="SelectAll(this)" />
                    </HeaderTemplate>
                    <ItemTemplate>
                        <input id="chkRow" type="checkbox" οnclick="checkRow(this);" runat="server" />
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="工号">
                    <ItemTemplate>
                        <asp:TextBox ID="txtEmpNo" runat="server" Text='<%# Eval("myemp_no") %>' BorderStyle="None"></asp:TextBox>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="姓名">
                    <ItemTemplate>
                        <asp:TextBox ID="txtName" runat="server" Text='<%# Eval("myname") %>' BorderStyle="None"></asp:TextBox>
                    </ItemTemplate>
                </asp:TemplateField>
            </Columns>
        </asp:GridView>
    </div>
//选中所有行   
function SelectAll(chkAll)      
{         
    var gridview =$("table[id$='GridView1']")[0];   
    if (gridview)           
    {              
        //获取到GridView1中的所有input标签        
        var inputs = gridview.getElementsByTagName("input");       
        for(var i=0;i<inputs.length;i++)          
        {             
            if (inputs[i].type=="checkbox")   
            {                  
                //设置所有checkbox的选中状态与chkAll一致  
                inputs[i].checked = chkAll.checked;           
            }           
        }         
    }       
}          
//给选中行换背景色   
function checkRow(chkRow)  
{         
    var row = chkRow.parentNode.parentNode; 
    if(row)        
    {           
        if (chkRow.checked) 
        {
            row.style.backgroundColor="#7799CC";   
        }        
        else 
        {                
            row.style.backgroundColor="#FFFFFF";     
        } 
    }    
}
 /// <summary>
        /// 初始化数据
        /// </summary>
        public void InitGridData()
        {
            DataTable dt = bll.GetGridViewData();
            GridView1.DataSource = dt;
            GridView1.DataBind();
        }
        /// <summary>
        /// 添加行
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void lbtnAddRow_Click(object sender, EventArgs e)
        {
            DataTable table = GetGridViewData();
            DataRow newRow = table.NewRow();
            newRow["ID"] = Guid.NewGuid().ToString(); 
            table.Rows.Add(newRow);
            GridView1.DataSource = table;
            GridView1.DataBind();
            int count = this.GridView1.Rows.Count;
            ((HtmlInputCheckBox)(this.GridView1.Rows[count - 1].FindControl("chkRow"))).Checked = true;
            this.GridView1.Rows[count - 1].BackColor = System.Drawing.ColorTranslator.FromHtml("#7799CC");
        }
        /// <summary>
        /// 获取gridview数据转换成table
        /// </summary>
        /// <returns></returns>
        private DataTable GetGridViewData() 
        { 
            DataTable table = new DataTable();
            table.Columns.Add(new DataColumn("id"));
            table.Columns.Add(new DataColumn("myemp_no"));
            table.Columns.Add(new DataColumn("myname"));
            foreach (GridViewRow row in GridView1.Rows)
            {
                DataRow sourseRow = table.NewRow();
                sourseRow["id"] = ((Label)(row.FindControl("lblID"))).Text; 
                sourseRow["myemp_no"] = ((TextBox)row.FindControl("txtEmpNo")).Text;
                sourseRow["myname"] = ((TextBox)row.FindControl("txtName")).Text;
                table.Rows.Add(sourseRow);
            } 
            return table;
        }
        /// <summary>
        /// 删除
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnDeleteRow_Click(object sender, EventArgs e)
        {
            DataTable table = GetGridViewData();
            foreach (GridViewRow row in GridView1.Rows)
            { 
                if (((HtmlInputCheckBox)row.FindControl("chkRow")).Checked)
                {
                    foreach (DataRow dtRow in table.Rows)
                    {
                        if (dtRow["ID"].ToString() ==((Label)(row.FindControl("lblID"))).Text)
                        {
                            table.Rows.Remove(dtRow);
                            break;
                        }
                    }
                }
            }
            GridView1.DataSource = table;
            GridView1.DataBind();
        }




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值