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
didonato,
The server side methods show only "error" messages. If there is no error dialog after server side method executed the assumption is that the method executed successfully.
didonato,
The server side methods show only "error" messages. If there is no error dialog after server side method executed the assumption is that the method executed successfully.