Hello
I am tring to access the property of a component in the page class but it
always returns null.
The property is declared...
<parameter name="error" type="java.lang.String" required="yes"
direction="in" />
has an abstact getter and setter in the component class
public abstract class WithError extends ValidField ... {
....
public abstract String getError();
public abstract void setDisabled(boolean value);
...
}
but in a method in the page class when I try to acess it
((ErroredValidField) component).getError();
It always equals null.
However when I check the value in the render component method it has the
correct value.
How can I get this value?
TIA
cheers
Mike