didonato
8 years agoCreator II
newResult
I'm having trouble with "newResult" in my method. I want to display either the method ran correcly or there was an error. I have something like this that i copied from the Aras Programmers Guide:
Innovator innovator = this.getInnovator();
return innovator.newResult("This method was <b>successful</b>.");
OR
Innovator innovator = this.getInnovator();
return innovator.newError("This method has <b>failed</b>.");
The newError works fine, but the newResult doesn't display anything.
Thanks