| Author |
enable/disable drop down
|
Deeps Mistry
Ranch Hand
Joined: Jan 31, 2009
Posts: 189
|
|
Hi Everyone,
I have two drop boxes in my JSP. When i choose "Yes" in the first drop down, the second drop down should get disabled. When i select "No" then the second drop down should get enabled. I have used struts tag.
How do i implement this?
Thanks
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
disabled does not have a value, it is just disabled and it takes a Boolean not a string when setting it with JavaScript.
Eric
|
 |
Deeps Mistry
Ranch Hand
Joined: Jan 31, 2009
Posts: 189
|
|
Eric Pascarello wrote:disabled does not have a value, it is just disabled and it takes a Boolean not a string when setting it with JavaScript.
Eric
Hi,
Ok ..so you mean to say i cant set disable as true or false? so can you please suggest me how to go about it?I am stuck
Thanks
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
Exactly what I said, disabled does not have a value [attributes].
Eric
|
 |
Deeps Mistry
Ranch Hand
Joined: Jan 31, 2009
Posts: 189
|
|
Eric Pascarello wrote:Exactly what I said, disabled does not have a value [attributes].
Eric
Hey Eric,
Thanks for your help. I tried setting disabled to false. But it is still not working.
I think there is some problem with this line : var DD2 = document.getElementsByProperty("POTX"); alert(DD2);
because i am not getting alert message for DD2.
Since i am using struts tag, i cannot use ID attribute with <html:select>. I have to use property attribute <html:select property="" >.
So what do i do now. javascript:emoticon(' ');
function DisableTR(value)
{
alert("hi");
alert(value);
var DD2 = document.getElementsByProperty("POTX");
alert(DD2);
if(value == "No")
{
DD2.disabled = false;
}
}
Thanks
|
 |
 |
|
|
subject: enable/disable drop down
|
|
|