I am having a inner class(static) named SelectProdLineAssociationForm
I have also given a declaration like this--
public SelectProdLineAssociationForm selectProdLineAssociationForm =
new SelectProdLineAssociationForm();
now on onclick event I want to set the field in the inner class a value so i am
document.forms[0].selectProdLineAssociationForm.selectedProdLineAssociationKey =
selectedProdLineAssociationKey;
where selectedProdLineAssociationKey is passed in javascript method
then it giving javascript error that
document.forms[0].selectProdLineAssociationForm
is undefined
can any one plz tell me why and how it can be resolved