-->

How to Grouping List Items (option) in ASP.NET DropDownList control using Jquery.

Introduction

In this post, I am explaining how to Grouping List Items (option) in ASP.NET DropDownList control.
ASP.NET DropDownList control does not allow Items grouping feature. Here in this post I have explained how we can do this very easily with just a few jquery lines.

Features:

  • Bind dropdownlist from database data in ASP.NET Using Jquery.
  • Grouping Items in DropDownList Control.
  • Get dropdown selected value from Code behind.
  • Retain dropdownlist selected value after postback.

Steps :

Step - 1 : Create New Project.

Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.

Step-2: Add a Database.

Go to Solution Explorer > Right Click on App_Data folder > Add > New item > Select SQL Server Database Under Data > Enter Database name > Add.

Step-3: Create a table for fetch data from Jquery function.

Open Database > Right Click on Table > Add New Table > Add Columns > Save > Enter table name > Ok.
In this example, I have used one tables as below

Step-4: Add Entity Data Model.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select ADO.net Entity Data Model under data > Enter model name > Add.
A popup window will come (Entity Data Model Wizard) > Select Generate from database > Next >
Chose your data connection > select your database > next > Select tables > enter Model Namespace > Finish.

Step-5: Add a Webpage and Design for bind database data to dropdown list.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.

HTML Code
  1. <h3>Grouping List Items (option) in ASP.NET DropdownList Control.</h3>
  2. <table>
  3. <tr>
  4. <td>Select Country : </td>
  5. <td>
  6. <asp:DropDownList ID="ddCountry" runat="server"></asp:DropDownList>
  7. </td>
  8. <td>
  9. <asp:Button ID="btnGetValue" runat="server" Text="Get Selected Value" OnClick="btnGetValue_Click" />
  10. </td>
  11. </tr>
  12. <tr>
  13. <td>
  14. <asp:HiddenField ID="hfSelectedValue" runat="server" />
  15. </td>
  16. <td colspan="2">
  17. <asp:Label ID="lblMsg" runat="server"></asp:Label>
  18. </td>
  19. </tr>
  20. </table>
JS Code
  1. <script src="Scripts/jquery-1.7.1.js"></script>
  2. <script language="javascript" type="text/javascript">
  3. $(document).ready(function () {
  4. $('#<%=ddCountry.ClientID %>').append(
  5. $('<option></option>').val('0').html('Please Wait...')
  6. );
  7. $.ajax({
  8. url: "Default.aspx/GetCountry",
  9. data: "{}",
  10. type: "POST",
  11. dataType: "json",
  12. contentType: "application/json; charset=utf-8",
  13. success: OnSuccess,
  14. error: OnError
  15. });
  16. // for get selected value from code behind
  17. $('#<%= ddCountry.ClientID%>').change(function () {
  18. $('#<%= hfSelectedValue.ClientID%>').val($('#<%=ddCountry.ClientID%>').val());
  19. });
  20.  
  21. });
  22. function OnSuccess(data) {
  23. $('#<%=ddCountry.ClientID%>').empty();
  24. var d = data.d;
  25. var dropdown = $('#<%=ddCountry.ClientID%>');
  26. var zone = "";
  27. var optGroup;
  28.  
  29. for (var i = 0; i < d.length; i++) {
  30. if (d[i].Zone.toString() != zone) {
  31. optGroup = $("<optgroup style='background-color:#CCCC00' />");
  32. optGroup.attr('label', d[i].Zone.toString());
  33. }
  34. zone = d[i].Zone.toString();
  35. optGroup.append(
  36. $('<option></option>').val(d[i].CountryID.toString()).html(d[i].CountryName.toString())
  37. );
  38.  
  39. dropdown.append(optGroup);
  40. }
  41. //for keep value after postback
  42. $('#<%=ddCountry.ClientID%>').val($('#<%=hfSelectedValue.ClientID%>').val());
  43. }
  44.  
  45. function OnError() {
  46. alert("Failed!");
  47. }
  48.  
  49. </script>

Step-6: Write this function into your page code behind.


Must have to do this EnableEventValidation="false" into your page.
  1. [WebMethod]
  2. public static List<CountryMaster> GetCountry()
  3. {
  4. List<CountryMaster> country = new List<CountryMaster>();
  5. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  6. {
  7. country = dc.CountryMasters.ToList();
  8. }
  9. return country;
  10. }

Step-7: Write this code into button_click event for get selected value from code behind.


  1. protected void btnGetValue_Click(object sender, EventArgs e)
  2. {
  3. lblMsg.Text = "Selected Value is : " + hfSelectedValue.Value;
  4. }

Step-8: Run Application.





Related Posts:




Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: