Don't Change Selection if the mouse is down.

Don't hide the grid tools for RO Tables
Disable individual methods for RO Tables on the Grid Tool Ribbon and Context Menu (Copy, Paste, Insert, Remove)
Don;t allow edit mode if IsRoTable.
This commit is contained in:
Rich
2016-03-02 21:03:08 +00:00
parent a1deb2a0ff
commit 526214e0b5
3 changed files with 15 additions and 7 deletions

View File

@@ -2412,7 +2412,8 @@ namespace Volian.Controls.Library
private void _StartEdit(object sender, C1.Win.C1FlexGrid.RowColEventArgs e)
{
// start editing the cell with the custom editor
_tableCellEditor.StartEditing(e.Row, e.Col);
if(!IsRoTable )
_tableCellEditor.StartEditing(e.Row, e.Col);
e.Cancel = true;
}