Skip to content
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
4 changes: 3 additions & 1 deletion blazor/datagrid/batch-editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ public class OrderDetails

## Enable single-click batch editing in Blazor DataGrid

Single-click batch editing is enabled by setting the **AllowEditOnSingleClick** property to true in the [GridEditSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridEditSettings.html). This configuration allows editable cells to enter edit mode on a single click rather than requiring a double-click.
Single-click batch editing is enabled by setting the [AllowEditOnSingleClick](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridEditSettings.html#Syncfusion_Blazor_Grids_GridEditSettings_AllowEditOnSingleClick) property to **true** in the [GridEditSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridEditSettings.html). This configuration allows editable cells to enter edit mode on a single click rather than requiring a double-click.

When **AllowEditOnSingleClick** is set to **true**, clicking an editable cell once immediately activates edit mode. This approach streamlines the editing workflow and improves efficiency during batch editing, particularly when handling large datasets or frequent data modifications.

Expand Down Expand Up @@ -1098,6 +1098,8 @@ public class OrderDetails
{% endhighlight %}
{% endtabs %}

{% previewsample "https://blazorplayground.syncfusion.com/embed/LXrxNmVUBWOQLhre?appbar=false&editor=false&result=true&errorlist=false&theme=fluent2" %}

N> The **AllowEditOnSingleClick** property applies only to **Batch** editing mode. Normal and Dialog editing modes are not affected by this setting.

## Supported events for batch editing
Expand Down
4 changes: 3 additions & 1 deletion blazor/datagrid/filter-bar.md
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ public class OrderData

### Operator-based filtering in the filter bar

The Blazor DataGrid supports operator-based filtering in the filter bar through the **ShowFilterBarOperator** property in [GridFilterSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_FilterSettings).
The Blazor DataGrid supports operator-based filtering in the filter bar through the [ShowFilterBarOperator](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridFilterSettings.html#Syncfusion_Blazor_Grids_GridFilterSettings_ShowFilterBarOperator) property in [GridFilterSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_FilterSettings).

When the **ShowFilterBarOperator** property is enabled, clicking the filter icon in a filter bar cell displays an operator dropdown menu. A filtering condition appropriate to the column type can be selected, removing the need to type operator expressions manually.

Expand Down Expand Up @@ -835,4 +835,6 @@ public class OrderData
{% endhighlight %}
{% endtabs %}

{% previewsample "https://blazorplayground.syncfusion.com/embed/BthHZcLqLCzqjHom?appbar=false&editor=false&result=true&errorlist=false&theme=fluent2" %}

> The **ShowFilterBarOperator** feature is applicable only when the Grid uses the default **FilterType.FilterBar**.