File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -744,7 +744,14 @@ You can able to render SfMultiSelect component in EditTemplate. In the below sam
744744 <Template>
745745 @{
746746 var d = (context as Order).ChosenItems;
747- <span>@String.Join(",", d)</span>
747+ if (d != null)
748+ {
749+ <span>@String.Join(",", d)</span>
750+ }
751+ else
752+ {
753+ <span>@String.Empty</span>
754+ }
748755 }
749756 </Template>
750757 </GridColumn>
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ The **WildCard** filter can process one or more search patterns using the “*
489489* The ** WildCard** filter option is supported for the DataGrid that has all search options.
490490
491491Operator |Description
492- -----|-----|
492+ -----|-----
493493a* b | Everything that starts with “a” and ends with “b”.
494494a* | Everything that starts with “a”.
495495* b | Everything that ends with “b”.
You can’t perform that action at this time.
0 commit comments