New question. Google didn't help at all. Also, the problem that I have is pretty hard to explain properly.
I have two components in my application: JournalView and JournalEntryView. JournalView displays a list of journal entries with links to individual entries. When you click on each of these links, you need to create a new EventView log and redirect to this newly created JournalEntryView.
I am currently doing this:
html anchor callback: [ entryView := JournalEntryView new. entryView entry: anEntry. self call: entryView ]; with: '(read more)' ]
The problem is that this code expects the newly created component to respond with a value later. Looking at the ghosting, I see the following hierarchy of components:
JournalView WADelegation WAAnswerHandler JournalEntryView
I do not want it. I want my EntryView Journal to be a top-level view, and I just want my bindings redirected to the new toplevel JournalEntryView.
Is this possible in Primorye?
source share