You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The control provides full text filtering through all the columns. If you want to exectue filtering on the specified columns, you can use syntax : `<ColumndName>`:`<FilterValue>`. Use `':'` as a separator between column name and value. Control support both `'fieldName'` and `'name'` properties of IColumn interface.
32
36
33
37
- With the `selection` property you can define a method that which gets called when the user selects one or more items in the list view:
34
38
@@ -71,6 +75,9 @@ The ListView control can be configured with the following properties:
71
75
| selection | function | no | Selection event that passes the selected item(s) from the list view. |
72
76
| groupByFields | IGrouping[]| no | Defines the field on which you want to group the items in the list view. |
73
77
| defaultSelection | number[]| no | The index of the items to be select by default |
78
+
| filterPlaceHolder | string | no | Specify the placeholder for the filter text box. Default 'Search' |
79
+
| showFilter | boolean | no | Specify if the filter text box should be rendered. |
80
+
| defaultFilter | string | no | Specify the initial filter to be applied to the list. |
74
81
75
82
The `IViewField` has the following implementation:
0 commit comments