[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread Michael Levine
To: flexcoders@yahoogroups.com Sent: Thursday, March 22, 2007 9:44 AM Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? Thank you, everyone! I ended up solving the problem with the following code: /* XML from HTTPService looks like

RE: [flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread Gordon Smith
: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? I think you could write a filterFunction and have it check for duplicates in the collection. This function could return false when a duplicate is detected.. --- In flexcoders@yahoogroups.com mailto:flexcoders

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread iko_knyphausen
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iko_knyphausen Sent: Wednesday, March 21, 2007 3:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? I think you could write a filterFunction and have

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread iko_knyphausen
I think you could write a filterFunction and have it check for duplicates in the collection. This function could return false when a duplicate is detected.. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: I don't think there is an automatic way to do this in the visual

RE: [flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iko_knyphausen Sent: Wednesday, March 21, 2007 5:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? I think you could write a filterFunction and have it check for duplicates

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Michael Levine
Thank you, everyone! I ended up solving the problem with the following code: /* XML from HTTPService looks like this: books book author= title= / ... /books XMLListCollection is set as dataProvider for the DataGrid. */ var books:XMLListCollection = new

Re: [flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Adam Royle
: Thursday, March 22, 2007 9:44 AM Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? Thank you, everyone! I ended up solving the problem with the following code: /* XML from HTTPService looks like this: books book author= title