Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SEO-182860-WF-DataGrid-Changes #965

Open
wants to merge 1 commit into
base: hotfix/hotfix-v26.1.35
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions WindowsForms/DataGrid/Editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Me.sfDataGrid.Columns(0).AllowEditing = True
{% endtabs %}

**Note:**The `GridColumn.AllowEditing` has the high priority than the `SfDataGrid.AllowEditing`.
![Windows forms datagrid Editing](Editing_images/Editing_Image1.png)
![Windows Forms DataGrid editing.](editing_images/windows-forms-datagrid-editing.png)

## Entering into Edit Mode
The current cell can be enter into edit mode by pressing <kbd>F2</kbd> key or clicking (touch also supported) the cell. The edit mode of the cell can be changed to the single click or double click by setting the [EditMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.DataGrid.SfDataGrid.html#Syncfusion_WinForms_DataGrid_SfDataGrid_EditMode) property.
Expand Down Expand Up @@ -70,7 +70,7 @@ Me.sfDataGrid.EditorSelectionBehavior = EditorSelectionBehavior.SelectAll
{% endhighlight %}
{% endtabs %}

![Windows forms datagrid Editing select all](Editing_images/Editing_Image2.png)
![Windows Forms DataGrid editing select all.](editing_images/windows-forms-datagrid-editing-select-all.png)

## Customization Using Events

Expand Down Expand Up @@ -122,7 +122,7 @@ End Sub
{% endhighlight %}
{% endtabs %}

![Windows forms datagrid Editing CurrentCellEndEdit ](Editing_images/Editing_Image3.png)
![Windows Forms DatagGrid editing current cell end edit.](editing_images/windows-forms-datagrid-editing-current-cell-end-edit.png)

### Change style of editor control

Expand Down Expand Up @@ -150,7 +150,7 @@ End Sub
{% endhighlight %}
{% endtabs %}

![Windows forms datagrid Editing changing style of editor control](Editing_images/Editing_Image4.png)
![Windows Forms DataGrid editing changing style of editor control.](editing_images/windows-forms-datagrid-editing-changing-style-of-editor.png)

## Programmatic Editing
The editing can be handled programmatically by using the [CurrentCellManager](https://help.syncfusion.com/cr/windowsforms/Syncfusion.WinForms.DataGrid.Interactivity.CurrentCellManager.html) which has the helper methods for handling the editing.
Expand Down