Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 616933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:22:49+00:00 2026-05-13T18:22:49+00:00

Suppose I am having three dropdownlist controls named dd1 , dd2 and dd3 .

  • 0

Suppose I am having three dropdownlist controls named dd1, dd2 and dd3. The value of each dropdownlist comes from database. dd3‘s value depends upon value of dd2 and dd2‘s value depends on value of dd1. Can anyone tell me how do I call servlet for this problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:22:49+00:00Added an answer on May 13, 2026 at 6:22 pm

    There are basically three ways to achieve this:

    1. Submit form to a servlet during the onchange event of the 1st dropdown (you can use Javascript for this), let the servlet get the selected item of the 1st dropdown as request parameter, let it obtain the associated values of the 2nd dropdown from the database as a Map<String, String>, let it store them in the request scope. Finally let JSP/JSTL display the values in the 2nd dropdown. You can use JSTL (just drop jstl-1.2.jar in /WEB-INF/lib) c:forEach tag for this. You can prepopulate the 1st list in the doGet() method of the Servlet associated with the JSP page.

       <select name="dd1" onchange="submit()">
           <c:forEach items="${dd1options}" var="option">
               <option value="${option.key}" ${param.dd1 == option.key ? 'selected' : ''}>${option.value}</option>
           </c:forEach>
       </select>
       <select name="dd2" onchange="submit()">
           <c:if test="${empty dd2options}">
               <option>Please select parent</option>
           </c:if>
           <c:forEach items="${dd2options}" var="option">
               <option value="${option.key}" ${param.dd2 == option.key ? 'selected' : ''}>${option.value}</option>
           </c:forEach>
       </select>
       <select name="dd3">
           <c:if test="${empty dd3options}">
               <option>Please select parent</option>
           </c:if>
           <c:forEach items="${dd3options}" var="option">
               <option value="${option.key}" ${param.dd3 == option.key ? 'selected' : ''}>${option.value}</option>
           </c:forEach>
       </select>
      

      Once caveat is however that this will submit the entire form and cause a "flash of content" which may be bad for User Experience. You’ll also need to retain the other fields in the same form based on the request parameters. You’ll also need to determine in the servlet whether the request is to update a dropdown (child dropdown value is null) or to submit the actual form.

    2. Print all possible values of the 2nd and 3rd dropdown out as a Javascript object and make use of a Javascript function to fill the 2nd dropdown based on the selected item of the 1st dropdown during the onchange event of the 1st dropdown. No form submit and no server cycle is needed here.

       <script>
           var dd2options = ${dd2optionsAsJSObject};
           var dd3options = ${dd3optionsAsJSObject};
           function dd1change(dd1) {
               // Fill dd2 options based on selected dd1 value.
               var selected = dd1.options[dd1.selectedIndex].value;
               ...
           }
           function dd2change(dd2) {
               // Fill dd3 options based on selected dd2 value.
               var selected = dd2.options[dd2.selectedIndex].value;
               ...
           }
       </script>
      
       <select name="dd1" onchange="dd1change(this)">
           <c:forEach items="${dd1options}" var="option">
               <option value="${option.key}" ${param.dd1 == option.key ? 'selected' : ''}>${option.value}</option>
           </c:forEach>
       </select>
       <select name="dd2" onchange="dd2change(this)">
           <option>Please select parent</option>
       </select>
       <select name="dd3">
           <option>Please select parent</option>
       </select>
      

      One caveat is however that this may become unnecessarily lengthy and expensive when you have a lot of items. Imagine that you have 3 steps of each 100 possible items, that would mean 100 * 100 * 100 = 1,000,000 items in JS objects. The HTML page would grow over 1MB in length.

    3. Make use of XMLHttpRequest in Javascript to fire an asynchronous request to a servlet during the onchange event of the 1st dropdown, let the servlet get the selected item of the 1st dropdown as request parameter, let it obtain the associated values of the 2nd dropdown from the database, return it back as XML or JSON string. Finally let Javascript display the values in the 2nd dropdown through the HTML DOM tree (the Ajax way, as suggested before). The best way for this would be using jQuery.

       <%@ page pageEncoding="UTF-8" %>
       <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
       <!DOCTYPE html>
       <html lang="en">
           <head>
               <title>SO question 2263996</title>
               <script src="http://code.jquery.com/jquery-latest.min.js"></script>
               <script>
                   $(document).ready(function() {
                       $('#dd1').change(function() { fillOptions('dd2', this); });
                       $('#dd2').change(function() { fillOptions('dd3', this); });
                   });
                   function fillOptions(ddId, callingElement) {
                       var dd = $('#' + ddId);
                       $.getJSON('json/options?dd=' + ddId + '&val=' + $(callingElement).val(), function(opts) {
                           $('>option', dd).remove(); // Clean old options first.
                           if (opts) {
                               $.each(opts, function(key, value) {
                                   dd.append($('<option/>').val(key).text(value));
                               });
                           } else {
                               dd.append($('<option/>').text("Please select parent"));
                           }
                       });
                   }
               </script>
           </head>
           <body>
               <form>
                   <select id="dd1" name="dd1">
                       <c:forEach items="${dd1}" var="option">
                           <option value="${option.key}" ${param.dd1 == option.key ? 'selected' : ''}>${option.value}</option>
                       </c:forEach>
                   </select>
                   <select id="dd2" name="dd2">
                       <option>Please select parent</option>
                   </select>
                   <select id="dd3" name="dd3">
                       <option>Please select parent</option>
                   </select>
               </form>
           </body>
       </html>
      

      ..where the Servlet behind /json/options can look like this:

       protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
           String dd = request.getParameter("dd"); // ID of child DD to fill options for.
           String val = request.getParameter("val"); // Value of parent DD to find associated child DD options for.
           Map<String, String> options = optionDAO.find(dd, val);
           String json = new Gson().toJson(options);
           response.setContentType("application/json");
           response.setCharacterEncoding("UTF-8");
           response.getWriter().write(json);
       }
      

      Here, Gson is Google Gson which eases converting fullworthy Java objects to JSON and vice versa. See also How to use Servlets and Ajax?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

suppose I have SELECT * FROM table t GROUP BY j HAVING condition_one OR
I have three tables, 1-Users, 2-Softwares, 3-UserSoftwares. if suppose, Users table having 6 user
I'm having huge difficulty debugging database operations from Silverlight RIA. This is understandable, I
Suppose I have an XSD file having below lines of code; <xsd:simpleType name=test> <xsd:restriction
Suppose I have a table Item (Id int Primary Key, Number INT) having records
I am having trouble mixing c# functions with conditions in Linq-To-SQL suppose i have
Having searched StackOverflow, and Google I think what I'm doing is suppose to be
Suppose I want to create a (stateless) WCF service with three methods exposed on
I'm having some problems with a jQuery control we made. Suppose you have a
I have three text boxes having ids: textbox1, textbox2, textbox3. I am retrieving values

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.