On Fri, Dec 19, 2008 at 10:15 PM, Saulo Brust <[email protected]> wrote:

> How can I invert the behavior of DataGrid component, so that
> properties are lines and items are columns?

You have data like this:

 Name, City, Zip
 Manish, Copenhagen, 129813
 Tom, San Francisco, 89126

You want to make it like this:

  Property, Value #1, Value #2
  Name, Manish, Tom
  City, Copenhagen, San Francisco
  Zip, 129813, 89126

Is that what you're looking for? The only way to get a DataGrid to
look like that is to actually modify the underlying data provider, as
in the above example.

Manish

Reply via email to