Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a DataGrid thats bound to a CSLA BusinessList object (Jobs), where each Job has a child list (Assignments). Each row in the datagrid displays data from each Job object, as well as data from each of the Assignments in each row. To do this I use a DataTemplate and Multibinding which has one of its bindings on the Assignments list of the Job object. The multibinding converter determines which of the Assignments to render in each cell. All works fine, displaying the data as I want.

Problem is when I add/delete an assignment in code (via a button click). The grid is not updated unless I reset its ItemSource property. I have attached handlers on the PropertyChanged event of the Assignments property of the Job and it gets fired when the Assignment is deleted

This is the DataTemplate -

    <DataTemplate x:Key="ShiftsTemplate" >
  <StackPanel>
    <TextBlock>
      <TextBlock.Text>
        <MultiBinding Converter="{StaticResource ShiftConverter}" Mode="TwoWay" >
          <Binding Path="JobKey"/>
          <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=DataGridCell}" Path="Column.DisplayIndex"/>
          <Binding Path="Assignments"/>
        </MultiBinding>
      </TextBlock.Text>
    </TextBlock>
  </StackPanel>
</DataTemplate>

This is the Converter -

  public class ShiftConverter1 : IMultiValueConverter {

public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) {
  string sResult = string.Empty;
  JobAssignments oAssignments = (JobAssignments)values[2];

  foreach (JobAssignment oAssign in (from oJA in oAssignments
                                     where oJA.RunDay == (int)values[1]
                                     select oJA).ToSyncList(oAssignments)) {
    if (sResult != string.Empty)
      sResult = sResult + "\n";
    sResult = sResult + oAssign.Start.ToString("hh:mm") + "-" + oAssign.Finish.ToString("hh:mm") + " " + oAssign.WorkedHrs + "hrs";
  }
  return sResult;
}

Because the Assignments property is issuing a PropertyChanged event, I would have thought that the binding would use it to run the converter on the cell effected, but its not run. Is it not possible to have dynamic refreshes when this combination of controls exists? Is there something else I need to do to get it to dynamically refresh? The grid is set for single cell selection.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.