Unplanned
Last Updated: 19 Mar 2019 14:29 by ADMIN
mike
Created on: 19 Mar 2019 14:26
Category: Spreadsheet
Type: Bug Report
3
Spreadsheet: Save command doesn't commit the value of the currently edited cell before saving
Currently, when the user is editing a cell and saves the document without leaving the edit mode first, the current value is not preserved in the saved document.
When pressing the File -> Save button in the ribbon, the Save dialog doesn't appear at all.
 
Workaround: Manually commit the change before saving. This workaround will also respect data validation:
var layer = ((NormalWorksheetEditorPresenter)radSpreadsheet.ActiveWorksheetEditor.ActivePresenter).UILayers.GetByName(WorksheetPredefinedUILayers.CellInput);
CellInputUILayer cellInputUILayer = (CellInputUILayer)layer;
cellInputUILayer.ApplyChange();
0 comments