Open SuperJMN opened 2 years ago
@grokys @Takoooooo
For anyone looking for a workaround - some reflection magic on private methods does allow to refresh the cells - namely calling CollectionChanged
on the HierarchicalRows
-Instance. You'll have to adjust the type though to match your HierarchicalTreeDataGridSource
. In my case it was enough to call it every time the selection changes.
var rows = (HierarchicalRows<Entry>)EntriesTree.GetType()
.GetMethod("GetOrCreateRows", BindingFlags.NonPublic | BindingFlags.Instance)
.Invoke(EntriesTree, null);
var evt = (NotifyCollectionChangedEventHandler)rows.GetType().GetField("CollectionChanged",
BindingFlags.NonPublic | BindingFlags.Instance)
.GetValue(rows);
if (evt != null) {
foreach (var handler in evt.GetInvocationList()) {
handler.Method.Invoke(handler.Target,
new object[]
{ rows, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset) });
}
}
Any update on this one? This makes the grid unusable when relying on INotifyPropertyChanged for the data.
@SuperJMN
So, I went on and went to debug the missing IPropertyChanged subscription. Turns out, in v10, the TreeDataGridCell does indeed not subscribe.
However, this issue is already fixed in the latest master branch for v11 by commit 58394adb346e3472aae114053002d8b0639ae755 "Implement cell editing for text cells."
When adding the following code to the sample project on v11 to the Country model's constructor, we can observe the desired effect. I also made the model a ReactiveObject for convenience.
The columns refresh as expected. Now just to wait until v11 :)
Task.Run(async () =>
{
while (true)
{
await Task.Delay(TimeSpan.FromSeconds(1));
Dispatcher.UIThread.Post(() =>
{
Name += "1";
this.RaisePropertyChanged(nameof(Name));
});
}
});
~~Okay, there STILL is a bug in the latest v11... The changed value only gets rendered every second property changed event. :(~~
EDIT: Was my fault. Works as intended.
This problem still happens for me with a TextColumn; my workaround was to use a TemplatedColumn...
This problem still happens for me with a TextColumn; my workaround was to use a TemplatedColumn...
Can you share the code for the workaround? I've tried with TemplateColumn
and it still doesn't work.
For me, this is a big showstopper.
Can you share the code for the workaround?
I don't have the code anymore, but it was something like this, I remember that I had troubles too because both property setters and getters functions need to be defined when creating the columns, like:
new TextColumn<Person, string>(
"First Name",
x => x.FirstName, // getter
s => x.FirstName = s) // setter
In the end, I switched to DataGrid instead of TreeDataGrid, since my data wasn't hierarchical.
I have the same issue, can you please, explain me how can update the render of the TreeDataGrid when an item of the observable collection gest changed?
When I click on ModFirst the value SessionCount of the first row is added by 1 When I click on ModRandom the value SessionCount of a random row is added by 1
in my case, the values shown in the columns update only when I change the order of a column
This is solved by creating a FlatTreeDataGridSource of view models instead of models. So that when a property of a single element is changed the MVVM framework can updated the UI.
Sorry for the novice question.
This is solved by creating a FlatTreeDataGridSource of view models instead of models. So that when a property of a single element is changed the MVVM framework can updated the UI.
Sorry for the novice question.
This is solved by creating a FlatTreeDataGridSource of view models instead of models. So that when a property of a single element is changed the MVVM framework can updated the UI.
Sorry for the novice question.
This is solved by creating a FlatTreeDataGridSource of view models instead of models. So that when a property of a single element is changed the MVVM framework can updated the UI.
Sorry for the novice question.
@dade6 Having similar issues to what you had. Would you be willing to share your code that fixed this for you?
I have the same problem while using CheckBoxColumn
. I've switched to TemplateColumn
as workaround.
With itemSrc.Columns
.Add(New TextColumn(Of VideoSlice, String)("テキスト", Function(x) x.Text, width:=GridLength.Star))
' CheckBoxColumn が INotifyPropertyChanged の処理を正しく行っていないため、TemplateColumn に変更しました。
.Add(New TemplateColumn(Of VideoSlice)("保留", "CheckBoxCell",
width:=New GridLength(48, GridUnitType.Pixel)))
End With
<TreeDataGrid.Resources>
<DataTemplate x:Key="CheckBoxCell" DataType="local:VideoSlice">
<CheckBox IsChecked="{Binding IsSelected}"/>
</DataTemplate>
</TreeDataGrid.Resources>
Describe the bug Given an underlying model that implements
INotifyPropertyChanged
, theTreeDataGrid
doesn't update when the model is updated.To Reproduce
https://github.com/SuperJMN-Tutorials/TreeDataGrid-Out-Of-Sync
If you want to do it yourself:
Expected behavior After 2 seconds, the data in the DataGrid should display "How are you?". However, it shows the initial text "Hello".
NOTES Interestingly enough, the TreeDataGrid starts to behave correctly when you click the column header. It seems that sorting a column makes it update.
Desktop (please complete the following information):
Additional context Avalonia 0.10.18.