Nevermind that last message. I was overcomplicating the problem. All
I had to do was change my change one method in my task.
(from this)
getPerson
^ self call:
(MAPersonEditor new)
(to this)
getPerson
^self call: (MAPersonModel new asComponent
addValidatedForm;
yourself).
A very simple, time-saving solution. Plus, didn't need to use the
MAPersonEditor.
I can see Magritte being a big help when building a questionnaire or
survey application which involves many input forms.
Cheers,
Chad
On 3/6/06, Chad Nantais <chad(a)clearwaterassociates.ca> wrote:
I've called a MAPersonEditor from my WATask, but
pressing "Save" in
the editor does not seem to answer to the task. Do I need to override
a save message or something?
Thanks,
Chad