Is it possible to resize a GridControl column to fit while the user is editing a cell (rather than waiting until they complete their edit?
My problem is that if the cell is narrow and the user edits a cell and starts typing, what they type slowly scrolls to the left and disappears ie they can only see the last 'x' characters they typed (dependent on how many characters the width of the cell/column can accommodate).
I was hoping to call ResizeColumnsToFit when the CurrentCellChanged event fired (which appears to trigger with each keypress) but I think that function only 'sees' the original value and thus doesn't see any need to resize the cell/column.
Since I'm using virtual mode for my data (ie QueryCellInfo/CommitCellInfo) I had hoped I could work around this by updating the underlying cell value myself as the user typed (so ResizeColumnsToFit would see the updated cell value and resize accordingly) but I can't determine what the new value actually is.
Is there a way to resize as the user types or, alternatively, identify what edits the user has made as they enter them (and pick those up when CurrentCellChanged is fired)?
Thanks!