[]
        
(Showing Draft Content)

C1.Blazor.Grid.FlexGrid.StartEditing

StartEditing Method

StartEditing(GridControlRange, bool, bool, bool)

Starts editing a specific cell.

Declaration
public override bool StartEditing(GridControlRange range, bool fullEdit = true, bool focus = true, bool disableAnimation = false)
Parameters
Type Name Description
GridControlRange range

The range to start editing.

bool fullEdit

Whether to stay in edit mode when the user presses the cursor keys.

bool focus

Whether to set the focus and select the text in the editor.

bool disableAnimation

if set to true disable scrolling animations.

Returns
Type Description
bool
Overrides

StartEditing(int, int, bool, bool, bool)

Starts editing a specific cell.

Declaration
public bool StartEditing(int row, int col, bool fullEdit = true, bool focus = true, bool disableAnimation = false)
Parameters
Type Name Description
int row

The row index.

int col

The column index.

bool fullEdit

Whether to stay in edit mode when the user presses the cursor keys.

bool focus

Whether to set the focus and select the text in the editor.

bool disableAnimation

if set to true disable scrolling animations.

Returns
Type Description
bool

true if the editing started and it started synchronously.

Remarks

If the editing couldn't start synchronously this call will return false. Consider using StartEdiringAsync to wait for the result when the row-editing is performed asynchronously in the collection view.