I defined the OnChange() event of an attribute called IsCorrespondent (bit, displayed as two radio buttons: Customer and Correspondent) like this:
if (crmForm.all.apollo_iscorrespondent.DataValue==true) {
crmForm.all.apollo_accountnumber.Visible=true;
crmForm.all.IFRAME_ProductRanking.Visible=true;
}
else {
crmForm.all.apollo_accountnumber.Visible=false;
crmForm.all.IFRAME_ProductRanking.Visible=false;
}
I don't get any error, but nothing happens
What is wrong?
Thanks
*This post is locked for comments
I have the same question (0)