zoukankan      html  css  js  c++  java
  • How to extend ASP.NET datagrid for multiselection of data rows.

    <Columns>
     <asp:TemplateColumn>
      <HeaderTemplate>
       <asp:CheckBox id="chkAll"
          <B>onclick="javascript:SelectAllCheckboxes(this);"</B> runat="server"
        AutoPostBack="false" ToolTip="Select/Deselect All" />
      </HeaderTemplate>
      <ItemTemplate>
        <asp:CheckBox id="chkSelect" <B>onclick="javascript:HighlightRow(this);"</B>
            runat="server"<B>OnCheckedChanged= "grdEmployees_CheckedChanged"</B>
            AutoPostBack="false" />
      </ItemTemplate>
     </asp:TemplateColumn>
    </Columns>

     //-------------------------------------------------------------
        // Select all the checkboxes (Hotmail style)
        //-------------------------------------------------------------
        function SelectAllCheckboxes(spanChk){
       
        // Added as ASPX uses SPAN for checkbox
        var oItem = spanChk.children;
        var theBox=oItem.item(0)
        xState=theBox.checked;   

            elm=theBox.form.elements;
            for(i=0;i<elm.length;i++)
            if(elm[i].type=="checkbox" && elm[i].id!=theBox.id)
                {
                //elm[i].click();
                if(elm[i].checked!=xState)
                elm[i].click();
                //elm[i].checked=xState;
                }
        }

        //-------------------------------------------------------------
        //----Select highlish rows when the checkboxes are selected
        //
        // Note: The colors are hardcoded, however you can use
        //       RegisterClientScript blocks methods to use Grid's
        //       ItemTemplates and SelectTemplates colors.
        //         for ex: grdEmployees.ItemStyle.BackColor OR
        //                 grdEmployees.SelectedItemStyle.BackColor
        //-------------------------------------------------------------
        function HighlightRow(chkB)    {
        var oItem = chkB.children;
        xState=oItem.item(0).checked;   
        if(xState)
            {chkB.parentElement.parentElement.style.backgroundColor='lightcoral';
               // grdEmployees.SelectedItemStyle.BackColor
             chkB.parentElement.parentElement.style.color='white';
               // grdEmployees.SelectedItemStyle.ForeColor
            }else
            {chkB.parentElement.parentElement.style.backgroundColor='white';
                 //grdEmployees.ItemStyle.BackColor
             chkB.parentElement.parentElement.style.color='black';
                 //grdEmployees.ItemStyle.ForeColor
            }
        }
        // -->



    转自  http://www.codeproject.com/aspnet/Multi-select_Dataagrid.asp
  • 相关阅读:
    spring MVC配置详解
    使用JDBC连接各种数据库
    Linux Shell常用shell命令
    IOS返回go(-1)
    NFS客户端挂载
    oracle常用函数
    支付宝手机网站支付流程(Node实现)
    SQL中的case when then else end用法
    mysql
    socket
  • 原文地址:https://www.cnblogs.com/gwazy/p/111120.html
Copyright © 2011-2022 走看看