Skip to content

Need-to-correct-the-names-of-the-filter-operators(884871) #4331

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

Open
wants to merge 1 commit into
base: hotfix/hotfix-v25.1.35
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions blazor/datagrid/filter-menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,23 +369,23 @@ Here is an example of how to customize the filter operators list in Syncfusion B
new Operators() { Value= "endsWith", Text= "Ends With" },
new Operators() { Value= "contains", Text= "Contains" },
new Operators() { Value= "equal", Text= "Equal" },
new Operators() { Value= "notEqual", Text= "Not Equal" }
new Operators() { Value= "notequal", Text= "Not Equal" }
};
List<Syncfusion.Blazor.Grids.IFilterOperator> NumberOperator = new List<Syncfusion.Blazor.Grids.IFilterOperator> {
new Operators() { Value= "equal", Text= "Equal" },
new Operators() { Value= "notEqual", Text= "Not Equal" },
new Operators() { Value= "notequal", Text= "Not Equal" },
new Operators() { Value= "greaterThan", Text= "Greater Than" },
new Operators() { Value= "lessThan", Text= "Less Than" },
};
List<Syncfusion.Blazor.Grids.IFilterOperator> DateOperator = new List<Syncfusion.Blazor.Grids.IFilterOperator> {
new Operators() { Value= "equal", Text= "Equal" },
new Operators() { Value= "notEqual", Text= "Not Equal" },
new Operators() { Value= "notequal", Text= "Not Equal" },
new Operators() { Value= "greaterThan", Text= "After" },
new Operators() { Value= "lessThan", Text= "Before" },
};
List<Syncfusion.Blazor.Grids.IFilterOperator> BooleanOperator = new List<Syncfusion.Blazor.Grids.IFilterOperator> {
new Operators() { Value= "equal", Text= "Equal" },
new Operators() { Value= "notEqual", Text= "Not Equal" },
new Operators() { Value= "notequal", Text= "Not Equal" },
};
}
{% endhighlight %}
Expand Down Expand Up @@ -438,7 +438,7 @@ public class OrderData
{% endhighlight %}
{% endtabs %}

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

## Filter by multiple keywords using filter menu

Expand Down