HighDots Forums  

Combo Box and text box

Javascript JavaScript language (comp.lang.javascript)


Discuss Combo Box and text box in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Mike
 
Posts: n/a

Default Combo Box and text box - 09-24-2003 , 06:20 AM






I have a combo box and a text box. Text to be display will be contigent
upon what is selected via the combo box. How do I do this?

I put the following code in the text box object:

var a = get thisField("combobox")

If (a==1)
{
event.value = "Test1"
}
if (a==2)
{
event.value = "Test2"
}


What I am doing wrong?




Reply With Quote
  #2  
Old   
Lasse Reichstein Nielsen
 
Posts: n/a

Default Re: Combo Box and text box - 09-24-2003 , 08:27 AM






"Mike" <hhey2 (AT) lycos (DOT) com> writes:

Quote:
I have a combo box and a text box.
Browsers don't have combo boxes. Is it a select element and an input
element? Or is it not a browser you are talking about?

Quote:
Text to be display will be contigent upon what is selected via the
combo box. How do I do this?
Displayed how?

Quote:
I put the following code in the text box object:
How do you put it into the text object? As an event handler?
As text?

Quote:
var a = get thisField("combobox")
This is no language I know of. I assume you want to know what is
selected in the select element. That would *probably* be something
like the following (but I can't know for sure without seeing the
code):

var a = this.form.elements['combobox'].selectedIndex + 1;

(the "+ 1" is to match your tests, since the selection index starts
at zero.

Quote:
If (a==1)
The keyword "id" is lower case and Javascript is case senesitive.

Quote:
{
event.value = "Test1"
What is this event that you try to assign a property to? It *probably*
refers to the event object of the event that triggered the event handler
this code is in (but I am guessing here). Event objects don't have a value
property normally, so I guess you will be extracting the value later
for display.

Quote:
What I am doing wrong?
Not giving us enough information .

/L
--
Lasse Reichstein Nielsen - lrn (AT) hotpop (DOT) com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'


Reply With Quote
  #3  
Old   
Mike
 
Posts: n/a

Default Re: Combo Box and text box - 09-24-2003 , 02:40 PM



I have two objects on my PDF Form (using Acrobat 4.0):

Combo Box named Contract
Text Box named Contract Name

After the user selects the Contract in the combo box, I want the Contract
Name to appear in the text box. For example: The user selects 22335 from
the combo box, Contract Name for 22335 will appear in the text box.

I put the below code in the Text Box object.

Does this clarify a little bit?

"Lasse Reichstein Nielsen" <lrn (AT) hotpop (DOT) com> wrote

Quote:
"Mike" <hhey2 (AT) lycos (DOT) com> writes:

I have a combo box and a text box.

Browsers don't have combo boxes. Is it a select element and an input
element? Or is it not a browser you are talking about?

Text to be display will be contigent upon what is selected via the
combo box. How do I do this?

Displayed how?

I put the following code in the text box object:

How do you put it into the text object? As an event handler?
As text?

var a = get thisField("combobox")

This is no language I know of. I assume you want to know what is
selected in the select element. That would *probably* be something
like the following (but I can't know for sure without seeing the
code):

var a = this.form.elements['combobox'].selectedIndex + 1;

(the "+ 1" is to match your tests, since the selection index starts
at zero.

If (a==1)

The keyword "id" is lower case and Javascript is case senesitive.

{
event.value = "Test1"

What is this event that you try to assign a property to? It *probably*
refers to the event object of the event that triggered the event handler
this code is in (but I am guessing here). Event objects don't have a value
property normally, so I guess you will be extracting the value later
for display.

What I am doing wrong?

Not giving us enough information .

/L
--
Lasse Reichstein Nielsen - lrn (AT) hotpop (DOT) com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html
'Faith without judgement merely degrades the spirit divine.'



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.