How to change the value of the unbound column when the other column is edited
The unbound column is using valueconverter
You can call .Refresh() in off the unbound cell in the CellExitEditMode off the grid. This will force the cell to update it's value.
grid.Rows[0].Cells["UnboundColumnKeyName"].Refresh();
I got it working
But I need to go to different cell and come back to the changed cell
How to avoid this?
Apparently there was a bug in the .Refresh method for which the Service Release has not come out yet.
I will have our DS staff make a case you can be notified when it's available.
What is the fix for this
Can it be handled via code?
Its a bug in the control, for now no there is nothing you can do.
The upcoming service release should resolve the issue so that when the .Refresh is called.
Any idea when Service Release is expected?
Can Grid InvalidateData be used? DOes it have pros and cons
Hi,
I want to let you know we recently fix this issue and now is included in the latest service release available for download form your account here:https://es.infragistics.com/Membership/Default.aspx?panel=Downloads#Downloads
Please let me know if you have any further questions.
Sincerely,DimiDeveloper Support Engineer, MCPD Infragistics, Inc.www.infragistics.com/support
We have created a support case (CAS-62183-K2SLW2) on your behalf in order to notify you when this issue will be fixed and published in a service release. This issue will be included in the next services release that will be available soon. We don’t have official date for it yet, but you can monitor our website where we post this information to our customers:http://es.infragistics.com/DhtmlPanelFrame.aspx?id=12865#ServiceReleasesOnce the service release is ready to be downloaded I will update this thread.
Please let me know if you have any further questions meanwhile.
I am currently using this as a workaround as this seems to work
It'll be nice if there is a Service release that comes sooner
InvalidateData will cause all the cells to redrawn. So it's not optimal, if you have a high frequency refresh (which is probably not the case if you doing this in exit edit mode) then it would probably not be ideal, but you could probably use this here."