my d2w app has a session user. when a user selects a tab, my MainNavigationController fires a method to create the list page.
the method creates an EODatabaseDataSource and then a fetch spec that limits the result to rows that were created by THIS user. ERXFetchSpecification<KickOffBrief> fs = new ERXFetchSpecification<KickOffBrief>(KickOffBrief.ENTITY_NAME, ERXQ.equals(KickOffBrief.IS_FILED_KEY, false).and(KickOffBrief.PERSON.eq(session().user())), null); How can I add the user qualification to the D2W created search query? Or when I am on a QueryKickOffBrief page, how do I add the and(KickOffBrief.PERSON.eq(session().user()) qualifier to the resultant page? Ted _______________________________________________ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com This email sent to [email protected]
