This question is locked. New answers and comments are not allowed.
Hi,
I have 2 maskedtextboxcolumns. One is bound to a simple property of the bindingsource ("HeadCount"), the other is bound to a property of an objectreferenced by the bindingsource ("DailyRate.LocalizedValue").
Now I also have an expressioncolumn, with the following expression:
When the HeadCount column is edited, the expression column updates beautifully. BUT, when the DailyRate.LocalizedValue column is edited no update of the expressioncolumn is triggered.
Any ideas on why this does not work? Fixes? Workarounds?
Thanks!
I have 2 maskedtextboxcolumns. One is bound to a simple property of the bindingsource ("HeadCount"), the other is bound to a property of an objectreferenced by the bindingsource ("DailyRate.LocalizedValue").
Now I also have an expressioncolumn, with the following expression:
Dim expr As System.Linq.Expressions.Expression(Of Func(Of UnloadingPointAmount, Double)) = Function(amt As UnloadingPointAmount) amt.HeadCount * amt.DailyRate.LocalizedValueWhen the HeadCount column is edited, the expression column updates beautifully. BUT, when the DailyRate.LocalizedValue column is edited no update of the expressioncolumn is triggered.
Any ideas on why this does not work? Fixes? Workarounds?
Thanks!