${X} is a one way output... it uses the prop: binding by default... remove the EL-style ${} and it should work.
On Thu, May 15, 2008 at 2:24 PM, Leon Derks <[EMAIL PROTECTED]> wrote: > I get this error: > > Failure writing parameter 'value' of component > characteristic/Edit:nominaltextfield: Binding > [EMAIL PROTECTED] is > read-only. > > I have the corresponding getter / setter for the property. > > What am I doing wrong? > > Java Page: > > private String nominalDescription; > > public String getNominalDescription() { > String description = > getDescriptionForValueType(CharacteristicValueType.Nominal); > if(description != null) { > return description; > } > return nominalDescription; > } > > public void setNominalDescription(String nominalDescription) { > this.nominalDescription = nominalDescription; > } > > Webpage: > <input t:type="textfield" t:id="nominalTextfield" size="50" > value="${nominalDescription}"/> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >