Loading... |
Reply to author |
Edit post |
Move post |
Delete this post |
Delete this post and replies |
Change post date |
Print post |
Permalink |
Raw mail |
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
CONTENTS DELETED
The author has deleted this message.
|
Loading... |
Reply to author |
Edit post |
Move post |
Delete this post |
Delete this post and replies |
Change post date |
Print post |
Permalink |
Raw mail |
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
355 posts
|
Hi julio, initialExtent: 300@300 (for example)
So in your script, when you call your glamour wizard, you could have something like: myMerlinWizard glamourWizard initialExtent: 300@300; yourself. Then for the communication between the different panel, you will do it throught merlin. In merlin, each 'part' that you add in a panel is associated to an output key: merlinFirstPane row: merlinFirstPanePart associatedTo: #key
You can then retrieve the output of this part in a second pane if you specify that your part require it. merlinSecondPanePart defaultValue: [:requiredInputs | (requiredInputs at: #key) ... ]
merlinSecondPane row: merlinSecondPanePart requiring: #key This allow you specify a default value (default selection) of a part according the value returned by anorther part.
Is it what you are looking for ? If you want want to do more than setting the default value/selection of a part, merlin provide for now a 'hacky' way to do nearly everything you want when the selected value (/output) of a part change. Each merlin part should understand the message 'callback:', in which you specify a block that will be executed when the selected value (/output) of this part change. For example you could have:
merlinFirstPanePart ... callback: [:outputValue | merlinSecondPanePart doSomethingWithTheOutputValue ... ]; ... Does it help you more ? 2011/12/13 Júlio Martins <[hidden email]> Hi Cyrille! ... [show rest of quote] _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev Cyrille Delaunay _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Free forum by Nabble | Edit this page |