As is the custom, Chuck is right here. Since queryMatch is of type NSMutableDictionary, it doesn't have a field named agent_person that the compiler can decode. Enter key-value coding, the typecasting nightmare, but quick and dirty coding dream. agentDisplayGroup.queryMatch.takeValueForKeyPath("Agent Name", "agent_person.surname"); should do the trick. If there is still an error with your key path, you will get a run time error.

John

On Jul 11, 2006, at 6:01 PM, Chuck Hill wrote:

Caveat: I am not much of a Display Group user and I am not at all sure of what you are trying to do...

On Jul 11, 2006, at 2:32 PM, Don Lindsay wrote:

Hello;
The code was created by Web objects by using Add | New File from the popup (right click menu) then selecting new display group component. I have tried to access agentDisplayGroup from within constructor, appendtoresult, an custom public functions.

// Generated by the WebObjects Assistant Sun Jul 09 20:32:32 US/ Eastern 2006
import com.webobjects.foundation.*;
import com.webobjects.appserver.*;
import com.webobjects.eocontrol.*;
import com.webobjects.eoaccess.*;
import com.webobjects.examples.utilities.*;

public class agentDisplay extends WOComponent {

    /** @TypeInfo Agent */
    protected EOEnterpriseObject agent;
// This WODisplayGroup is initialized from the .woo archive in the component's constructor method
    protected WODisplayGroup agentDisplayGroup;
    public String errorMessage;
    public Person selectedPerson;
    public String sOrderBy;
    public Agent newAgent;
    public NSArray PersonList;
    public Person aPerson;
    public WeaponAssignment agentWeapon;
    public String searchAgent;
    public String searchSerial;
    protected String orgListing;
    public Organization anOrganization;

    public agentDisplay(WOContext context) {
        super(context);
    }

public void appendToResponse(WOResponse response, WOContext context) {
        WXDebug.println(25,"**appendToResponse(): Entered");
this.agentDisplayGroup.queryMatch.agent_person.surname = "Agent Name"; //results in cannot resolve symbol


"Cannot resolve symbol" is a compiler error. It means that you typed something wrong. In this case, the wrong thing is
this.agentDisplayGroup.queryMatch
queryMatch is a method (or function) that returns a NSMutableDictionary value, not an instance variable. As such, you refer to it as
this.agentDisplayGroup.queryMatch()

That will leave you with another error at .agent_person as this is not an instance variable (or a method) on NSMutableDictionary.

Beyond that I am not sure if you want to update agentDisplayGroup.queryMatch(), or call setQualifier(), or something else entirely. But it does look like you are doing more work that what should be needed.

Chuck


this.agentDisplayGroup.queryMatch.agent_weapons.serial = "Serial"; // results in cannot resolve symbol
        super.appendToResponse(response,context);
        WXDebug.println(25,"**appendToResponse(): Done");
    }
}

On Jul 11, 2006, at 1:08 PM, Travis Cripps wrote:

Don,

Hi. Can you share some of the code? Normally there would be no reason you shouldn't be able to access it.

Travis
 _______________________________________________
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/chill% 40global-village.net

This email sent to [EMAIL PROTECTED]

--
Coming sometime... - an introduction to web applications using WebObjects and Xcode http://www.global-village.net/wointro

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/the_larsons% 40mac.com

This email sent to [EMAIL PROTECTED]

_______________________________________________
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