hi,
i have a listcollectionview (from wcf service), that conatins one field as array.
So when i try to bind this collection to datagrid , it shows "System.Array[]" in the grid.
That array's "0" is "Comment" and "1" as "Actual Comment Value".
i want to bind the array[1] .
Please help
Its a WPF windows App.
Loading
Praneeth KumarPosted Jun 23, 2011, 6:24 AM
Binding={Binding PropertyName.Property[1]}
Not sure of the above. Well as an alternative you can create another datagrid within the datatemplate of the first datagrid. Set the itemsource of the child datagrid to the array object like
...
Bind array[0] or array[1]...array[n]