Skip to main content

DropDownList Having CheckBoxes

<table>
      
<tr
>
            
<td valign="top" style="width
165px">
                  
<asp:PlaceHolder ID="phDDLCHK" runat="server"></asp:PlaceHolder
>
            
</td
>
            
<td valign
="top">
                  
<asp:Button ID="btn" runat="server" Text="Get Checked" OnClick="btn_Click" 
/>
            
</td
>
            
<td valign
="top">
                  
<asp:Label ID="lblSelectedItem" runat="server"></asp:Label
>
            
</td
>
      
</tr
></table><asp:HiddenField ID="hidList" runat="server" />

Step 2: Add below lines of code on page load.

protected void Page_Load(object sender, EventArgs e)
{
      DropDownList ddl = new DropDownList
();
      ddl.ID = "ddlChkList"
;
      ListItem lstItem = new ListItem
();
      ddl.Items.Insert(0, lstItem);
      ddl.Width = new Unit
(155);
      ddl.Attributes.Add("onmousedown""showdivonClick()"
);
      CheckBoxList chkBxLst = new CheckBoxList
();
      chkBxLst.ID = "chkLstItem"
;
      chkBxLst.Attributes.Add("onmouseover""showdiv()"
);
      DataTable
 dtListItem = GetListItem();
      int
 rowNo = dtListItem.Rows.Count;
      string lstValue = string
.Empty;
      string lstID = string
.Empty;
      for (int
 i = 0; i < rowNo - 1; i++)
      {
            lstValue = dtListItem.Rows[i]["Value"
].ToString();
            lstID = dtListItem.Rows[i]["ID"
].ToString();
            lstItem = new ListItem("<a href=\"javascript:void(0)\" id=\"alst\" style=\"text-decoration:none;color:Black; \" onclick=\"getSelectedItem(' " + lstValue + "','" + i + "','" + lstID + "','anchor');\">" + lstValue + "</a>", dtListItem.Rows[i]["ID"
].ToString());
            lstItem.Attributes.Add("onclick""getSelectedItem('" + lstValue + "','" + i + "','" + lstID + "','listItem');"
);
            chkBxLst.Items.Add(lstItem);
      }
      System.Web.UI.HtmlControls.HtmlGenericControl div = new System.Web.UI.HtmlControls.HtmlGenericControl("div"
);
      div.ID = "divChkList"
;
      div.Controls.Add(chkBxLst);
      div.Style.Add("border""black 1px solid"
);
      div.Style.Add("width""160px"
);
      div.Style.Add("height""180px"
);
      div.Style.Add("overflow""AUTO"
);
      div.Style.Add("display""none"
);
      phDDLCHK.Controls.Add(ddl);
      phDDLCHK.Controls.Add(div);
}


Step 3:  
Place below javascript method in the aspx page  or you can place it in .js file and include it in the page.
showdiv method will be called on mouse over of div.
showdivonClick will be invoked on click of dropdownlist.
getSelectedItem will be called on click of checkbox and anchor.
check will be call on any click on the page basically it is used to hide the div on click of any where on the page apart from div.


<script language="javascript" type="text/javascript">
      
function
 showdiv() {
            document.getElementById("divChkList").style.display = "block"
;
      }

      function showdivonClick() {
            var objDLL = document.getElementById("divChkList"
);
            if (objDLL.style.display == "block"
)
                  objDLL.style.display = "none"
;
            else

                  objDLL.style.display = "block"
;
      }
      function getSelectedItem(lstValue, lstNo, lstID, ctrlType) {
            var
 noItemChecked = 0;
            var ddlReport = document.getElementById("ddlChkList"
);
            var selectedItems = ""
;
            var arr = document.getElementById("chkLstItem").getElementsByTagName('input'
);
            var arrlbl = document.getElementById("chkLstItem").getElementsByTagName('label'
);
            var objLstId = document.getElementById('hidList'
);
            for
 (i = 0; i < arr.length; i++) {
                  checkbox = arr[i];
                  if
 (i == lstNo) {
                        if (ctrlType == 'anchor'
) {
                              if
 (!checkbox.checked) {
                                    checkbox.checked = true
;
                              }
                              else
 {
                                    checkbox.checked = false
;
                              }
                        }
                  }
                  if
 (checkbox.checked) {
                        if (selectedItems == ""
) {
                              selectedItems = arrlbl[i].innerText;
                        }
                        else
 {
                              selectedItems = selectedItems + ","
 + arrlbl[i].innerText;
                        }
                        noItemChecked = noItemChecked + 1;
                  }
            }
            ddlReport.title = selectedItems;
            var
 Text = ddlReport.options[ddlReport.selectedIndex].text;
            if
 (noItemChecked == 1)
                  ddlReport.options[ddlReport.selectedIndex].text = lstValue;
            
else
                  
ddlReport.options[ddlReport.selectedIndex].text = noItemChecked + " Items"
;
            document.getElementById('hidList'
).value = ddlReport.options[ddlReport.selectedIndex].text;
      }
  
      
document.onclick = check;

      
function
 check(e) {
            var
 target = (e && e.target) || (event && event.srcElement);
            var obj = document.getElementById('divChkList'
);
            var obj1 = document.getElementById('ddlChkList'
);
            if (target.id != "alst" && !target.id.match("chkLstItem"
)) {
                  if (!(target == obj || target == obj1)) {

                        
obj.style.display = 'none'
                  
}
                  else if (target == obj || target == obj1) {

                        if (obj.style.display == 'block') {
                              obj.style.display = 'block'
;
                        }
                        else
 {
                              obj.style.display = 'none'
;
                              document.getElementById('ddlChkList'
).blur();
                        }
                  }
            }
      }
</script>
 

Step 4: btn_Click method will be used to get to get the selected checkbox status in the dropdownlist.

protected void btn_Click(object sender, EventArgs e)
{
      string strSelectedItem = string
.Empty;
      CheckBoxList chk = (CheckBoxList)phDDLCHK.FindControl("chkLstItem"
);
      DropDownList ddl = (DropDownList)Page.FindControl("ddlChkList"
);
      for (int
 i = 0; i < chk.Items.Count; i++)
      {
            if
 (chk.Items[i].Selected)
            {
                  if
 (strSelectedItem.Length == 0)
                  {
                        strSelectedItem = chk.Items[i].Selected.ToString();
                  }
                  
else
                  
{
                        strSelectedItem = strSelectedItem + ","
 + chk.Items[i].Selected.ToString();
                  }
            }
      }
      ddl.Items.Clear();
      ddl.Items.Add(new ListItem
(hidList.Value));
      lblSelectedItem.Text = strSelectedItem;
}

Step 5: Now add a method to get datatable which will be bind to checkboxlist.

public DataTable GetListItem()
{
      DataTable table = new DataTable
();
      table.Columns.Add("ID"typeof(int
));
      table.Columns.Add("Value"typeof(string
));
      table.Rows.Add(1, "ListItem1"
);
      table.Rows.Add(2, "ListItem2"
);
      table.Rows.Add(3, "ListItem3"
);
      table.Rows.Add(4, "My ListItem Wraps also"
);
      table.Rows.Add(5, "My New ListItem5"
);
      table.Rows.Add(6, "ListItem6"
);
      table.Rows.Add(7, "ListItem7"
);
      table.Rows.Add(8, "ListItem8"
);
      return
 table;
}


  

Comments

Popular posts from this blog

Editing Child GridView in Nested GridView

Editing Child GridView in Nested GridView In this article we will explore how to edit child gridview in the nested gridview.   Let''s write some code. Step 1:  Add scriptmanager in the aspx page. < asp : ScriptManager   ID ="ScriptManager1"   runat ="server"   EnablePageMethods ="true"> </ asp : ScriptManager > Step 2:  Add below stylesheet for modal popup. < style   type ="text/css">        .modalBackground        {              background-color : Gray;              filter : alpha(opacity=80);              opacity : 0.5;       }        .ModalWindow        {     ...

Hierarchical GridView in ASP.NET with AJAX, JQuery implementation - Part 1

Previously I had blogged some post related to showing two grids in hierarchical way. For example - when I need to show an invoice reports on the screen, the user requesting to show the list of invoices at initial time and they can drill down the details of item details of each invoice by clicking on respective row. The implementations can be in multiple ways, but I had blogged the implementation with AJAX and without AJAX using Java script on ASP.NET page. Below are the URLs of the same – Hierarchical GridView in ASP.NET Hierarchical GridView in ASP.NET with AJAX, Javascript implementation In this post I am taking the same requirements done before and enhance with some additional functionality as per readers expectations. The requirement on this implementation will be – The page should show a Grid View with list of Orders with Expand icon on the first column. On click of expand icon on each row, the Order Details of the Order must be fetched from the database ...

Add Edit Update Records in GridView using Modal Popup in ASP.Net

Add Edit Update Records in GridView using Modal Popup in ASP.Net In this article, I’ll explain how to Add and Edit records in ASP.Net GridView control using ASP.Net AJAX Control Toolkit Modal Popup Extender. Database For this tutorial, I am using Microsoft’s NorthWind database. You can download it using the following link. Download Northwind Database Connection string Below is the connection string to connect to the database. < connectionStrings >     < add name = " conString "      connectionString = " Data Source=.\SQLExpress;database=Northwind;     Integrated Security=true " /> </ connectionStrings >   HTML Markup Below is the HTML Markup of the page. Below you will notice that I have placed a Script Manager and an ASP.Net Update Panel on the page. Inside the Update Panel I have placed an ASP.Net GridView Control along with a Modal Popup Extender that will be used to Add or...