Suppose a controller action must gather additional data from the user
(a confirmation for example). At the moment I'm using plain old
window.confirm() but I thought about nice modal dialogs. This lead to
lots of questions:
How would these be correctly implemented in the Claypool framework?
Can controller action "A" be triggered inside controller action "B"?
The documentation hints at it with event.c()
And if action "A" has finished (rendered the view, etc), will
controller action B continued from the point where it left?
Or must it be triggered from A, with additional parameters?
Am I thinking too complicated? :)
Greetings,
Gabriel
--
You received this message because you are subscribed to the Google Groups "jquery-claypool" group.
To post to this group, send email to jquery-...@googlegroups.com.
To unsubscribe from this group, send email to jquery-claypo...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/jquery-claypool?hl=en.
--
You received this message because you are subscribed to the Google Groups "jquery-claypool" group.
To post to this group, send email to jquery-...@googlegroups.com.
To unsubscribe from this group, send email to jquery-claypo...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/jquery-claypool?hl=en.
The interactions between entities in my system can get messy. When
deleting an instance of one entity type, for example, it is necessary
for the user to decide delete related, but standalone, entities.
This was a perfect opportunity to use filters, as it was nearly
orthogonal functionality. Keeps the entity controllers and models
clean and provides a predictable place for such code to exist.
(Shameless plug...) The application I am describing is Web front end
of Phonebooth... http://www.phonebooth.com/ We are invite only at
this point, and have quite a backlog. But anyone on this list, just
send me an email and I'll send you an invitation ASAP.
Brandon Smith