Re: Overriding action methods in PageWrapper

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 5:21 PM, Mike Schrag wrote: i think i'd go with something more like a nextpagedelegate, where you would have it in the parent and pass it into the child, and it would encapsulate the shared logic of what to do in response to your action. That is what I was thinking to

Re: Overriding action methods in PageWrapper

2010-05-27 Thread Mike Schrag
i think i'd go with something more like a nextpagedelegate, where you would have it in the parent and pass it into the child, and it would encapsulate the shared logic of what to do in response to your action. ms On May 27, 2010, at 7:17 PM, David Holt wrote: > Hi Chuck, > > I have some very

Re: Overriding action methods in PageWrapper

2010-05-27 Thread David Holt
Hi Chuck, I have some very long forms that I display in a scrolling window. The save button is always displayed above the scrolling window as well as at the end of the scrolling content. Normally the save and revert leaves the person on the page and they have to navigate away manually. Th

Re: Overriding action methods in PageWrapper

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 3:39 PM, David Holt wrote: Hi all, I have a number of components wrapped in a form with WOSubmitButtons that save and revert and return context().page(). In most cases the method for the submit buttons should come from the wrapper, but in some cases I would like the *

Overriding action methods in PageWrapper

2010-05-27 Thread David Holt
Hi all, I have a number of components wrapped in a form with WOSubmitButtons that save and revert and return context().page(). In most cases the method for the submit buttons should come from the wrapper, but in some cases I would like the *wrapped* component to provide the saveChanges() method

WOLips HTML Editor Code Assist Templates

2010-05-27 Thread JR Ruggentaler
I am using eclipse version 3.4.2 and WOLips version 3.4.5830. I am trying to add templates to Eclipse -> Preferences -> WOLips -> HTML Editor -> Code Assist -> Templates but when I click the "New" button nothing happens. Is the code completion/template functionality available in WOLips version 3

Re: Recording the steps made by an user in an app

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 8:09 AM, Pascal Robert wrote: Le 10-05-27 à 11:01, Chuck Hill a écrit : On May 27, 2010, at 7:26 AM, Pascal Robert wrote: We have a strange problem here where a relation between two EOs get "lost" (eg, the relation is set to null). Since it's a public app, we can't

Re: columns being set to null for no apparent reason

2010-05-27 Thread Chuck Hill
On May 26, 2010, at 10:57 AM, Larry Mills-Gahl wrote: Hello, I setup what I think is a pretty simple program to map some external identifier strings to existing data. Two display groups on one page. First display group is the objects (Center) to be edited, the second display group (Exter

Re: Recording the steps made by an user in an app

2010-05-27 Thread Pascal Robert
Le 10-05-27 à 11:01, Chuck Hill a écrit : On May 27, 2010, at 7:26 AM, Pascal Robert wrote: We have a strange problem here where a relation between two EOs get "lost" (eg, the relation is set to null). Since it's a public app, we can't easily find out under which circumstances the problem

Re: Debugging EO design smells

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 12:38 AM, Frédéric JECKER wrote: Hi, I'm working on a 10yo woapp that started recently to behave strangely when deleting records : the saveChanges() methods triggered a complete refresh on some huge tables. After searching a while we found that this was caused by to-man

Re: Recording the steps made by an user in an app

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 7:26 AM, Pascal Robert wrote: We have a strange problem here where a relation between two EOs get "lost" (eg, the relation is set to null). Since it's a public app, we can't easily find out under which circumstances the problem get in. I enabled logging in the EOs so th

Fwd: Ajax List Filtering

2010-05-27 Thread Joe Kramer
Hi all, I am trying to create a component that displays a list of people and then lets the user filter this list based on a few criteria (first name, last name, etc.). I haven't been using ajax until very recently, so I'm sorry if this is an easy newbie question. The setup I have is I am observi

Re: Recording the steps made by an user in an app

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 7:42 AM, Pascal Robert wrote: Le 10-05-27 à 10:32, Mark Ritchie a écrit : On 27/May/2010, at 7:26 AM, Pascal Robert wrote: What's the best way to "record" the steps that an user is doing? I guess that I can add log4j calls in all the steps, but I was wondering if an e

Re: Recording the steps made by an user in an app

2010-05-27 Thread Pascal Robert
Le 10-05-27 à 10:33, George Domurot a écrit : This might produce excessive logging for a bit, but can't you print a stack trace each time the change is made (or when it becomes null)? At least you would see exactly where in your code the call is coming from. NSLog.out.appendln(new Runti

Re: Recording the steps made by an user in an app

2010-05-27 Thread Anjo Krank
There's stuff in ERXSession that does this. Search for ERXActionLogging in the Wonder source. I think the trick was to override session.appendToReponse to log objectForKey("ERXActionLogging") and context.page.name. Cheers, Anjo Am 27.05.2010 um 16:26 schrieb Pascal Robert: > We have a strang

Re: Recording the steps made by an user in an app

2010-05-27 Thread Pascal Robert
Le 10-05-27 à 10:32, Mark Ritchie a écrit : On 27/May/2010, at 7:26 AM, Pascal Robert wrote: What's the best way to "record" the steps that an user is doing? I guess that I can add log4j calls in all the steps, but I was wondering if an easier solution exists. How many concurrent users ar

Re: Recording the steps made by an user in an app

2010-05-27 Thread George Domurot
This might produce excessive logging for a bit, but can't you print a stack trace each time the change is made (or when it becomes null)? At least you would see exactly where in your code the call is coming from. NSLog.out.appendln(new RuntimeException("changed value...")); -G On May 27, 201

Re: Recording the steps made by an user in an app

2010-05-27 Thread Mark Ritchie
On 27/May/2010, at 7:26 AM, Pascal Robert wrote: > What's the best way to "record" the steps that an user is doing? I guess that > I can add log4j calls in all the steps, but I was wondering if an easier > solution exists. How many concurrent users are we talking about? I would use WORecordingP

Re: Recording the steps made by an user in an app

2010-05-27 Thread Chuck Hill
On May 27, 2010, at 7:26 AM, Pascal Robert wrote: We have a strange problem here where a relation between two EOs get "lost" (eg, the relation is set to null). Since it's a public app, we can't easily find out under which circumstances the problem get in. I enabled logging in the EOs so th

Recording the steps made by an user in an app

2010-05-27 Thread Pascal Robert
We have a strange problem here where a relation between two EOs get "lost" (eg, the relation is set to null). Since it's a public app, we can't easily find out under which circumstances the problem get in. I enabled logging in the EOs so that I can at least see if the relation is set to nul

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread Mark Ritchie
On 27/May/2010, at 5:09 AM, David LeBer wrote: > Tommy's night is usually Wednesday right? > Maybe a WO contingent meetup there? I think that there were 3 runs last year! ;-) I'm sure that we can figure something out! M. ___ Do not post admin requests t

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread John Huss
I'll be there along with a co-worker. Seeing more WO people is always good. See ya, John ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Su

Re: [OT] Yay Apple!

2010-05-27 Thread Hugi Thordarson
Yay! Maybe this means they're finally able to afford to promote WO :D http://www.asp.net/ - hugi On 27.5.2010, at 11:36, Ramsey Lee Gurley wrote: > Our favorite fruit company just surpassed Microsoft and is now the second > largest company in the US behind Exxon-Mobil (^_^) > > http://www.n

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread Michelle Parker
HI guys I'll be there, and look forward to seeing you all again. It's been a few years. Chuck I'll miss seeing you! ciao mich --- Michelle Parker Web Objectives Pty Ltd 33 Ridge St Gordon, NSW, 2072 Australia Phone: (02) 9499 3166 Fax: (02) 9499 3166 Mobile

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread Boris Herman
Can I get a show of hands? Are there enough to plan anything? +1 Boris ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: htt

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread David LeBer
On 2010-05-27, at 1:23 AM, Mark Ritchie wrote: > T's sooo good!! ;-) > You really should come along! Tommy's night is usually Wednesday right? Maybe a WO contingent meetup there? > > Sent from my iPhone > > On 2010-05-26, at 21:31, Chuck Hill wrote: > >> Alex Cone... Tequila... Tommy's...

[OT] Yay Apple!

2010-05-27 Thread Ramsey Lee Gurley
Our favorite fruit company just surpassed Microsoft and is now the second largest company in the US behind Exxon-Mobil (^_^) http://www.nytimes.com/2010/05/27/technology/27apple.html?hp Congratulations to everyone at Apple! Ramsey smime.p7s Description: S/MIME cryptographic signature

Debugging EO design smells

2010-05-27 Thread Frédéric JECKER
Hi, I'm working on a 10yo woapp that started recently to behave strangely when deleting records : the saveChanges() methods triggered a complete refresh on some huge tables. After searching a while we found that this was caused by to-many relationships which had inverse relationships. We deleted

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread Miguel Arroz
Hi! I'll skip WWDC this year. You people behave! ;) Yours Miguel Arroz On 2010/05/27, at 02:18, David LeBer wrote: > On 2010-05-26, at 8:55 PM, Chuck Hill wrote: > >> >> On May 26, 2010, at 5:53 PM, Mark Ritchie wrote: >> > See you about town! ;-) Are you up here enjoying th

Re: WWDC? (Was: Snow Leopard, Apache 2.2, Skewed Load Balancing?)

2010-05-27 Thread Andrus Adamchik
I'll be there. Even though I am not doing any WO work these days, wouldn't mind having a beer with the WO folks ;-) Andrus On May 27, 2010, at 4:18 AM, David LeBer wrote: Sadly, I won't be at WWDC this year. My house is getting renovated and I want to keep an eye on it. Will you be at W