Re: How to handle long responses with direct action?

2010-04-09 Thread Amiel Montecillo
I think I will have to play around a bit more with the 2 options. The requirement is rather picky about needless sessions. Anyways, I want to thank you for all the input, I think I will be able to stay human now. Cheers! Amiel On Fri, Apr 9, 2010 at 8:46 PM, Kieran Kelleher wrote: > If you have

AjaxSortableList in a AjaxModalDialog

2010-04-09 Thread Sacha Michel Mallais
Anyone know what kind of incantation will get the AjaxSortableList working inside an AjaxModalDialog? It seems that I can make the AMD pop up, showing the list ready for sorting, but when I click and drag an item and drop it somewhere else, the item moves back to its original place in the list

Re: ERXModernNavigationMenu : how to use the CSS classes ?

2010-04-09 Thread Mark Wardle
Just to say I use ERXNavigation as well. I was slightly put off given that there was a "modern" version but I soon realised this doesn't mean ERXNavigation is / will be deprecated! Best wishes, Mark -- Dr. Mark Wardle Specialist registrar, Neurology (Sent from my mobile) On 9 Apr 2010, at

Re: Basic question - lightweight to-one relationship from entity to POJO/enum

2010-04-09 Thread Mark Wardle
Ramsey: thank you! I was battling the wrong binding (possibleChoices rather than restrictedChoiceKey) and have successfully updated my project's EOgenerator templates as per the objectstyle wiki. Thank you again - I owe you more than one beer if you ever come to the UK! Mark -- Dr. Mark W

Re: ERXModernNavigationMenu : how to use the CSS classes ?

2010-04-09 Thread David Holt
Hi David, There was a thread on exactly this topic on the Wonder list last week. I was looking at ERXModernNavigation as well and came to the conclusion that unless you need more than three levels in your hierarchy, or have some burning desire for nested lists instead of peer lists, ERXNavigati

Re: ERXModernNavigationMenu : how to use the CSS classes ?

2010-04-09 Thread David BON
Ok, Nothing to see there: I was badly mixing ERXModernNavigation and ERXNavigationMenu. Nevertheless, if someone could give me some hints/guidelines on how to perzonnalize/use ERXModernNavigationMenu to take full advantage of its "advanced" CSS features, I'm all ear... David B. Le 9 avr.

ERXModernNavigationMenu : how to use the CSS classes ?

2010-04-09 Thread David BON
Hi list! I try to use the ERXModernNavigationMenu in a new app but can't find out how to set the CSS classes features for ul / li tags of the menus/submenus... I've already got through the page Project WONDER-Frameworks- ERXNavigation. I defined the same CSS classes in my site.css but n

Re: How to handle long responses with direct action?

2010-04-09 Thread Kieran Kelleher
If you have multiple instances, you will need to represent the task and its current status as an Entity in the database since direct actions can go to any instance. The task would need to update the status in the database periodically so that any instance can check the current status. Temporaril

Re: How to handle long responses with direct action?

2010-04-09 Thread Lachlan Deck
On 09/04/2010, at 6:54 PM, Amiel Montecillo wrote: > I have a direct action method that performs a rather lengthy process. I > looked at WOLongResponsePage but it seems that it creates a session. Is the lengthy process handled via a separate thread? Assuming it is, you've got two options: - use

How to handle long responses with direct action?

2010-04-09 Thread Amiel Montecillo
HI List, I have a direct action method that performs a rather lengthy process. I looked at WOLongResponsePage but it seems that it creates a session. Is there a way to handle a long running process on a direct action without creating any session? I tried google and gave me "Direct Action Respons