I am trying to build a custom editor component for the DataGrid. When you edit an item you can either edit it inline or show a popup to edit it in full. When you are finished with the popup you drop back into the grid editor to complete.
My problem is how to get the data back from the popup to the cell, when I start editing in the popup it removes focus from the cell and calls endEdit even though I dont really want to end editing yet. So when I am finished with the popup there is no editor for me to push the data back into.... I dont really want to push the data into a dataProvider as at this point its still sort of "uncommited" nether do I want to push it into some static var and hope I can pick it up when the editor opens again. There must be some simple way to do this? tks
