ashpassword
Programmer
Can I use onChage event in Netscape 6 if yes than I am using it for combo, In that what I have done is on the basis of certain selection
I am enabling and disabling the button.
This is working fine in IE but nothing happens in Netscape 6.
For your reference I am sending my code:
function forEnableDisable()
{
var objForm = document.reports; //"reports" is my form name.
var lsDesValue = objForm.cmbDesFormat.value;
if(lsDesValue=="PDF"
{
objForm.btnPrintReport.disabled=true; //"btnPrintReport" is the name of button which I want to disable.
}
else
{
objForm.btnPrintReport.disabled=false;
}
return true;
}
The above function I am calling from combo,as :
<select name="cmbDesFormat" class="clselectbox" tabindex = "6" size="1" onChange="forEnableDisable();">
I am enabling and disabling the button.
This is working fine in IE but nothing happens in Netscape 6.
For your reference I am sending my code:
function forEnableDisable()
{
var objForm = document.reports; //"reports" is my form name.
var lsDesValue = objForm.cmbDesFormat.value;
if(lsDesValue=="PDF"
{
objForm.btnPrintReport.disabled=true; //"btnPrintReport" is the name of button which I want to disable.
}
else
{
objForm.btnPrintReport.disabled=false;
}
return true;
}
The above function I am calling from combo,as :
<select name="cmbDesFormat" class="clselectbox" tabindex = "6" size="1" onChange="forEnableDisable();">