JavaScript setting values

JavaScript setting values

This tip was submitted to the VS.NET Info Center by member Clive Chinery. Please let other users know how useful it is by rating it below. Do you have a tip or code of your own you'd like to share? Submit it here.


In the situation of a combination box populated by JavaScript, when a dropdown list is selected, retrieving the value can be problematical. The solution is to trap the click within JavaScript and output the value to a textbox.

However, this textbox cannot be hidden by setting visible to false, as it will then not be rendered. The solution is make the textbox invisible by setting the border to none, the backcolor to transparent and the forecolor to the same as the form background.

Code:

function DoActivity3() {
var theform = document.Form1;
var iSeek = 0;
var cboActivity3 = theform.cboActivity3;
  i = cboActivity3.selectedIndex;
  iSeek = cboActivity3.options[i].value;
  theform.txtActivityId3.value = iSeek;
}

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

This was first published in April 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.