Newbie with Dolphin re: #createSchematicWiring

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
acg
Reply | Threaded
Open this post in threaded view
|

Newbie with Dolphin re: #createSchematicWiring

acg
Hello All
I am converting an old ST/V windows program I wrote to Dolphin 5. In
the PersonalMoney tutorial, PersonalAccountShell>>createSchematicWiring
containg #actionPerformed as a trigger in the Sample code, but the
documentations lists #actionRequested for the same #when:send:to. Both
seem to work. My question is how do I find what triggers are available
for any particular presenter. I've tried Browse|Published events,
definitions and references choices in menu choices of browsers and
don't get it yet.
Thanks in advance


Reply | Threaded
Open this post in threaded view
|

Re: Newbie with Dolphin re: #createSchematicWiring

Christopher J. Demers
<[hidden email]> wrote in message
news:[hidden email]...

> Hello All
> I am converting an old ST/V windows program I wrote to Dolphin 5. In
> the PersonalMoney tutorial, PersonalAccountShell>>createSchematicWiring
> containg #actionPerformed as a trigger in the Sample code, but the
> documentations lists #actionRequested for the same #when:send:to. Both
> seem to work. My question is how do I find what triggers are available
> for any particular presenter. I've tried Browse|Published events,
> definitions and references choices in menu choices of browsers and
> don't get it yet.
> Thanks in advance

The events are triggered on the presenter, but they are implemented in the
view.  So while there are no published events for ListPresenter you will
find that there are for ListView.

Chris