I have two columns, one is a simple textbox control and the second is a 3rd party numeric control.
When I make a change in the first column and use an arrow key to go to the next row, the summation immediately updates.
But for the second column, the summation is late firing and doesn't update till after not the next row but the following row.
If I change the value in the second column and press ENTER the summation works just fine.
Just wondering where the problem is....
I have attached a small project recreating the above two scenarios...
Hi,
It's hard to say exactly, b/c i don't have the assemblies that are missing from the project, such as dll for the NumericControl.
However, my guess is it has to do with the NumericControl not updating it's value, perhaps it's b/c of your logic in the KeyDown of the NumericCOntrol where you're prohibiting the base implementation to fire.
You can try setting the UpdateSourceTrigger on the binding to the NumericControl to Explicit. That will allow us to force the binding to be applied when we exit edit mode, and should hopefully fix the issue.
-SteveZ
Hello,
Were you able to resolve your issue?
Valerie