Answered
I am attempting to change the text that displays in a text box by setting its '.value' property. Here's the relevant code:
seller = this.getField("topmostSubform[0].Page1[0].seller[0]");
seller.value = "new value";
The text in the text box doesn't change and I get the following error in the JS console:
InvalidSetError: Set not possible, invalid or unknown.
Field.value:107:App Clauses:Exec
Any ideas?
- Nate
topmostSubform[0].Page1[0].seller[0].rawValue = "new value";
George Kaiser