IsCustomEditMode - cCJGrid
Returns true if a DataFlex edit control is active in the grid
Type: Function
Return Data Type: Boolean
Syntax
Function IsCustomEditMode Returns Boolean
Call Example
Get IsCustomEditMode to BooleanVariable
Description
IsCustomEditMode returns true if the grid is in edit mode and the current control is a DataFlex edit control. This can be used along with IsEditMode to determine what kind of edit control, if any is active.
If IsEditMode is False, there is no active edit control in the grid.
If IsEditMode is True and IsCustomEditMode is False, there is a Codejock active edit control in the grid.
If IsEditMode is True and IsCustomEditMode is True, there is a DataFlex active edit control in the grid.
DataFlex Form controls are used as edit controls so that standard mask behaviors are supported for editing. By default, most controls are DataFlex control. Combo controls uses the CodeJock control and checkboxes don't use an overlay control at all. The cCJGridColumn property pbVDFEditControl can be set false to force a column to always use the Codejock control.
Return Value
Returns true if a DataFlex edit control is active in the grid.