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 5975827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:08:29+00:00 2026-05-22T21:08:29+00:00

I want to insert a new row into a table that contains a Dropdown

  • 0

I want to insert a new row into a table that contains a Dropdown and a textbox?
I need to load the new row’s DDL with data from another DLL that will be populated from a database.
Right now, I have a hardcoded DDL that I am trying to pull from. Why doesnt the new rows populate its DDL from the Source DDL? Code below. See the section that says //WHY DOESNT THIS WORK???

<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
function createTextbox(counter){
    return "<input id='"+ counter +  "' type='text' />"
}
function createDropDown(counter){

     var newSelectBox = "<select id='sel'" + counter + "></select>"


    return newSelectBox
}
function createRow(counter){
    return "<tr><td>" + createDropDown(counter) + "</td><td>"+ createTextbox(counter) +  "</td></tr>";
}
function getValuesForPostback(){
    //format as XML, JSON, or Whatever
    var ToReturn = "<items>"; 
    $('#sampleTable tr').each(function(){
    ToReturn += "<item>";
    //Get the textbox value
    ToReturn += "<text>" + $(this).find('input[type=text]').val() + "</text>";

    //Get the select values
    $(this).find('select option:selected').each(function(){
    ToReturn += "<select>" + $(this).val() + "</select>";
    });
    ToReturn += "</item>";
    });
    ToReturn += "</items>";
    return ToReturn;
}
function submitValues()
{
    alert(getValuesForPostback());
    //NOW: Just ajax or post back this value to the server and parse for your data.
}
$(document).ready(function(){
    $("#SourceDDL").hide();

    var counter = 2;
    $('#sampleTable').append(createRow(1));


    $('#btnAdd').click(function(){
        if(counter>10)
          {
               alert("You are only allowed to enter 10 Metrics for this project.");
               return false;
            }   
    $('#sampleTable').append(createRow(counter));

    $('#SourceDDL option').clone().appendTo("'#sel" + counter + "'")//WHY DOESNT THIS WORK???

    alert("'#sel" + counter + "'");
    counter++;
    });

    $('#btnSubmit').click(function(){
    submitValues();
    });
});
</script>
</head>
<body>

<button id="btnAdd">Add</button>
<button id="btnSubmit">Submit</button>
<table id="sampleTable">
</table>



<select id='SourceDDL'>
    <option>Zippy</option>
    <option>ZippyTwo</option>
    <option>ZippyThree</option>
</select>
</body>
</html> 
  • 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-22T21:08:30+00:00Added an answer on May 22, 2026 at 9:08 pm

    You’re passing an incorrect string to appendTo—selectors don’t have quotes.

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

Sidebar

Related Questions

I want to insert a new row into an Access database. I'm looking at
so the problem is, that i want to insert a new row after another
I want to insert a row into the Database using SqlDataAdapter. I've 2 tables
I want to create a new table and then insert a specific record in
I have lists of about 20,000 items that I want to insert into a
I want to create a procedure that inserts into a table and returns it's
I use jQuery to add a new input. Each row in table contains several
I insert new record to Project table and after that I restore DB and
EntityManager.merge() can insert new objects and update existing ones. Why would one want to
I want to insert say 50,000 records into sql server database 2000 at a

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.