Skip to content
Merged
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
9 changes: 8 additions & 1 deletion blazor/datagrid/cell-edit-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,14 @@ You can able to render SfMultiSelect component in EditTemplate. In the below sam
<Template>
@{
var d = (context as Order).ChosenItems;
<span>@String.Join(",", d)</span>
if (d != null)
{
<span>@String.Join(",", d)</span>
}
else
{
<span>@String.Empty</span>
}
}
</Template>
</GridColumn>
Expand Down
2 changes: 1 addition & 1 deletion blazor/datagrid/filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ The **WildCard** filter can process one or more search patterns using the “*
* The **WildCard** filter option is supported for the DataGrid that has all search options.

Operator |Description
-----|-----|
-----|-----
a*b | Everything that starts with “a” and ends with “b”.
a* | Everything that starts with “a”.
*b | Everything that ends with “b”.
Expand Down