Is there any way to troble shoot why any column of grid isnt getting changed based on the value of other column dynamically
I am having 2 columns column A and column b which should sum upto 100
column b is non editable
if the Column a has value 75 the column b should get claulated to 25
this works fine in one of the pages i have created
I made copy of the same page and removed just the grouping part of it
but the field isnt changing dynamically
if anyone knows what could be missing it'll be great
Hi,
So you need to make sure your object Implements INotifyPropertyChanged.
Then you need to make sure you raise the Property Changed events for each property.
When you change A, you should update B(make sure B's PropertyChagned event is raised as well)
-SteveZ