I am binding the the RadGridView to a collection of objects that do not implement INotifyPropertyChanged or INotifyCollectionChanged. Specifically, I'm using the WorkItemCollection and WorkItem objects from Microsoft's Team Foundation Server object model. The WorkItem object has an event that is raised whenever a field is modified, so I do have a way of knowing exactly when an object changes and which field has changed. Given that, is there a way to manually update the grid without rebinding the entire grid? Perhaps by just updating a single row or cell?
class Person
{
public Address address;
public DateTime age;
...
Ctor's and so on ...
}
class Address
{
string street;
int number;
...
}
And suppose that I have a datagrid, inside a wpf grid where I set the datacontext to a list of Persons like this :
personGrid.datacontext = personDao.getAll() as List<Person>;
What I want to know is how i define what will appear in Address column. I know i can do this overriding the toString() method on Address class, but I want to do something like "DisplayMemberPath = "street" . Is that possible ?
For any of the charts like Pie chart, is there any mechanism to have a drill down chart? To make it more clear, i will give an example:
Lets say I am looking for all the sales in the country and I would want to divide by region and show that in a pie chart. Now on clicking on the region, I would want to go and see the breakup against the cities in that region.
Is such kind of support available with any of the charts?
What files need to be deployed for the Carousel?
I have test program that does not run on a client machine.. nothing happens.. except the eventview shows.