On Feb 29, 2008, at 5:01 PM, Baiss Eric Magnusson wrote:

I have a sub-component <MonthDayYear>.

In Awake of that sub-component I call <pullValuesFromParent> if I can.
                if (  value == null && canGetValueForBinding( "value" )) {
                        pullValuesFromParent();
                        value = (NSTimestamp)valueForBinding( "value" );

When I Submit in the Main Component, the Action method of the submit button is called after <Awake> in the sub-component, therefore the sub-component does not get the right bindings.

As I see below, after cloning and adding a week, the sub-component has the old binding:

Awakening MonthDayYear 2007-02-12 03:00:00 Etc/GMT
Dumping editEvent.eventDate in StartEdit- > 2007-02-19 03:00:00 Etc/ GMT

I am trying, and failing, to understand why you need or want that code in awake. I can't think of any time that I ever explicitly called pullValuesFromParent(). Try taking all of that out of awake, and add this method:

public NSTimestamp value() {
return canGetValueForBinding( "value" ) ? NSTimestamp)valueForBinding( "value" ) : null;
}

I am not even sure about the canGetValueForBinding for check. That seems more like it should be a design time check driven by the API. Or at least should throw a RuntimeException if it returns false.

Chuck


--

Practical WebObjects - for developers who want to increase their overall knowledge of WebObjects or who are trying to solve specific problems.
http://www.global-village.net/products/practical_webobjects





_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to