Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a listview with observable collection source. I am sure the data changed in code behind but I am totally exhausted why the UI won't display the changes. What am I missing?

my xaml:

<GridViewColumn Width="70" Header="Status">
                        <GridViewColumn.CellTemplate>
                            <DataTemplate>
                                <!--<CheckBox IsChecked="{Binding Path=Status, Mode= Twoway}" HorizontalContentAlignment="Center" IsEnabled="False"/>-->
                                <TextBlock Text="{Binding Path=Status, Mode= Twoway}" TextAlignment="Center" Loaded="Page_Loaded"/>
                            </DataTemplate>
                        </GridViewColumn.CellTemplate>
                    </GridViewColumn>

my class:

public partial class tblADRMaster: INotifyPropertyChanged
    {
 public string Status
        {
            get { return _status; }
            set
            {
                if (_status != value)
                {
                    _status = value;
                    OnPropertyChanged("Status");
                }
            }
        }
}

this is my code behind:. I want to change the status. It does change coz I placed a breakpoint and STATUS went from HOLD to ACTIVE but the listview won't display the change. it remains HOLD, unless I press back btn or reload the items.

ObservableCollection<tblADRMaster> list = new ObservableCollection<tblADRMaster>();
            CurrentCase = FileMaintenanceBusiness.Instance.GetADRMasterInfobyKeywordRefresh(caseNo.CaseIDSystem, "CaseIDSystem");
            foreach (var c in listFrWWC)
            {
                if (c.CaseIDSystem != CurrentCase.CaseIDSystem)
                    list.Add(c);
                else
                    list.Add(CurrentCase);

            }
            foreach (var caseMaster in list)
            {
                caseMaster.IsMissingDocs = GetMissingDoc(caseMaster.tblADRDispositions);
                caseMaster.IsProblemCase = !string.IsNullOrEmpty(caseMaster.ProblemNote) ? "Yes" : "No";
                caseMaster.Status = GetStatus(caseMaster);
            }

            lvAdrMaster.ItemsSource = list;

I have been troubleshooting this all day and I can not seem to think of any other else I could have missed. Pls tell me. thanks.

share|improve this question
Show the XAMl for lvAdrMaster. And you should expose list as pubic property and bind to it and use a better name than list. – Blam Oct 20 '11 at 2:23

3 Answers

Try this for your textblock binding:

Text="{Binding Path=Status, Mode= Twoway, UpdateSourceTrigger=PropertyChanged}"
share|improve this answer

Try to use CollecitonViewSource

 private ListCollectionView EmpCollectionView
    {
        get
        {
            return (ListCollectionView)CollectionViewSource.GetDefaultView(ListOfEmp);
        }
    }


    private ObservableCollection<Employee> listOfEmp = new ObservableCollection<Employee>();
    public ObservableCollection<Employee> ListOfEmp
    {
        get { return listOfEmp; }
        set { listOfEmp = value; }
    }

and after u update the collection just refresh the collectionViewSource like

 public void OnAdd(object sender)
    {
        ToggleButton tb = sender as ToggleButton;

        EmpCollectionView.SortDescriptions.Clear();
        if (tb.IsChecked == true)
        {

            EmpCollectionView.SortDescriptions.Add(new SortDescription(tb.Content.ToString(), ListSortDirection.Ascending));
            EmpCollectionView.Refresh();
        }
        else
        {
            EmpCollectionView.SortDescriptions.Add(new SortDescription(tb.Content.ToString(), ListSortDirection.Descending));
            EmpCollectionView.Refresh();
        }
    }
share|improve this answer

Have you implemented INotifyPropertyChanged interface in tblADRMaster class and raised property notification for Status property?

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.