Re: Newbie question about highlighting rows

2006-07-25 Thread Guido Neitzer
On 25.07.2006, at 21:58 Uhr, Sacha Michel Mallais wrote: Yeah, it looks strange but is perfectly allowed (remember that WO tags and HTML tags are two different beasts...). Right. I know that. But I don't like it ... ;-) It's the look that disturbs me. As I normally don't use WO Builder at a

Re: Newbie question about highlighting rows

2006-07-25 Thread Sacha Michel Mallais
On Jul 25, 2006, at 12:48 PM, Guido Neitzer wrote: On 25.07.2006, at 17:54 Uhr, Sacha Michel Mallais wrote: Then, inside the repetition, modify the tag to be style="background: grey;"WEBOBJECT>>, where HighlightConditional is a WOConditional bound to a method that returns true only when the

Re: Newbie question about highlighting rows

2006-07-25 Thread Guido Neitzer
On 25.07.2006, at 17:54 Uhr, Sacha Michel Mallais wrote: Then, inside the repetition, modify the tag to be style="background: grey;"WEBOBJECT>>, where HighlightConditional is a WOConditional bound to a method that returns true only when the selected index equals the current index. Do you r

Re: Newbie question about highlighting rows

2006-07-25 Thread Chip Myers
Thanks, that worked fantastically! ___ 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: http://lists.apple.com/mailman/options/webobj

Re: Newbie question about highlighting rows

2006-07-25 Thread Sacha Michel Mallais
On Jul 25, 2006, at 9:35 AM, Chip Myers wrote: Sacha: you mentioned Then, inside the repetition, modify the tag to be NAME=HighlightConditional>style="background: grey;">, where HighlightConditional is a WOConditional bound to a method that returns true onl

Re: Newbie question about highlighting rows

2006-07-25 Thread Robert Walker
This is what I do.  Just an similar (but alternate) solution for the same function:What I do is select the tag I want to control dynamically and press the "Make Dynamic" button in the WO Builder inspector.  Then bind the bgcolor (or these days the CSS style) that I want to use for the row. Then I

Re: Newbie question about highlighting rows

2006-07-25 Thread Chip Myers
Obtaining Application Instance Number (Robert Campbell) 2. Re: JDBCChannel method failed to update (Kieran Kelleher) 3. EOObjectNotAvailableException (Watkins, Garry) 4. Re: EOObjectNotAvailableException (Ken Anderson) 5. RE: EOObjectNotAvailableException (Watkins, Garry) 6. Re: Newbie

Re: Newbie question about highlighting rows

2006-07-25 Thread Sacha Michel Mallais
On Jul 25, 2006, at 7:13 AM, Chip Myers wrote: I'm currently generating a series of rows within a WORepetition. The best way to show the structure is as follows: SELECT PERSON ACITY ASTATE A SELECT PERSON BCITY BSTATE B __

Newbie question about highlighting rows

2006-07-25 Thread Chip Myers
I'm currently generating a series of rows within a WORepetition.  The best way to show the structure is as follows:SELECT PERSON A    CITY A    STATE A SELECT PERSON B    CITY B    STATE B SELECT