|
65 | 65 | </TableColumn> |
66 | 66 | <TableColumn @bind-Field="@context.Count" Width="100" Sortable="true" Filterable="true"> |
67 | 67 | <FilterTemplate> |
68 | | - <CustomerFilter></CustomerFilter> |
| 68 | + <FilterProvider ShowMoreButton="false"> |
| 69 | + <CustomerFilter></CustomerFilter> |
| 70 | + </FilterProvider> |
69 | 71 | </FilterTemplate> |
70 | 72 | </TableColumn> |
71 | 73 | </TableColumns> |
|
211 | 213 | <TableColumn @bind-Field="@context.DateTime" Width="180" Sortable="true" /> |
212 | 214 | <TableColumn @bind-Field="@context.Name" Width="100" Sortable="true" Filterable="true"> |
213 | 215 | <FilterTemplate> |
214 | | - <MultiFilter Items="Items.Select(i => new SelectedItem(i.Name!, i.Name!)).DistinctBy(i => i.Value).ToList()"></MultiFilter> |
| 216 | + <FilterProvider ShowMoreButton="false"> |
| 217 | + <MultiFilter Items="Items.Select(i => new SelectedItem(i.Name!, i.Name!)).DistinctBy(i => i.Value).ToList()"></MultiFilter> |
| 218 | + </FilterProvider> |
215 | 219 | </FilterTemplate> |
216 | 220 | </TableColumn> |
217 | 221 | <TableColumn @bind-Field="@context.Address" Sortable="true" Filterable="true"> |
218 | 222 | <FilterTemplate> |
219 | | - <MultiFilter OnGetItemsAsync="OnGetAddressItemsAsync"></MultiFilter> |
| 223 | + <FilterProvider ShowMoreButton="false"> |
| 224 | + <MultiFilter OnGetItemsAsync="OnGetAddressItemsAsync"></MultiFilter> |
| 225 | + </FilterProvider> |
220 | 226 | </FilterTemplate> |
221 | 227 | </TableColumn> |
222 | 228 | <TableColumn @bind-Field="@context.Complete" Width="100" Sortable="true" Filterable="true"> |
223 | 229 | <FilterTemplate> |
224 | | - <MultiFilter ShowSearch="false" Items="Items.Select(i => new SelectedItem(i.Complete.ToString()!, i.Complete.ToString()!)).DistinctBy(i => i.Value).ToList()"></MultiFilter> |
| 230 | + <FilterProvider ShowMoreButton="false"> |
| 231 | + <MultiFilter ShowSearch="false" Items="Items.Select(i => new SelectedItem(i.Complete.ToString()!, i.Complete.ToString()!)).DistinctBy(i => i.Value).ToList()"></MultiFilter> |
| 232 | + </FilterProvider> |
225 | 233 | </FilterTemplate> |
226 | 234 | </TableColumn> |
227 | 235 | <TableColumn @bind-Field="@context.Education" Width="100" Sortable="true" Filterable="true"> |
228 | 236 | <FilterTemplate> |
229 | | - <MultiFilter ShowSearch="false" Items="Items.Select(i => new SelectedItem(i.Education.ToString()!, i.Education.ToString()!)).DistinctBy(i => i.Value).ToList()"></MultiFilter> |
| 237 | + <FilterProvider ShowMoreButton="false"> |
| 238 | + <MultiFilter ShowSearch="false" Items="Items.Select(i => new SelectedItem(i.Education.ToString()!, i.Education.ToString()!)).DistinctBy(i => i.Value).ToList()"></MultiFilter> |
| 239 | + </FilterProvider> |
230 | 240 | </FilterTemplate> |
231 | 241 | </TableColumn> |
232 | 242 | <TableColumn @bind-Field="@context.Count" Width="150" Sortable="true" /> |
|
0 commit comments