This is a migrated thread and some comments may be shown as answers.

Search ahead with Multi Select filter

1 Answer 181 Views
Grid
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 21 Jun 2016, 03:17 PM

In this demo,

https://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes

 

The multi select for the product filter has a search ahead textbox for the client operations but not on the server operation.  Are there any example of the search text box implemented for the server side?

1 Answer, 1 is accepted

Sort by
0
Accepted
Patrick | Technical Support Engineer, Senior
Telerik team
answered on 21 Jun 2016, 05:38 PM
Hello David,

Please take a look at this Kendo UI Dojo by Progress illustrating how to add a search box into a filterable column.

Here is the how columns.filterable.search is used in the dojo:
columns: [
         {
           field: "FirstName",
           title: "First Name",
           filterable: {
             multi: true ,
             search: true,
             dataSource: {
               transport: {
                 read: {
                   url: telerikWebServiceBase + "Employees/Unique",
                   dataType: "jsonp",
                   data: {
                     field: "FirstName"
                   }
                 }
               }
             }
           },
           width: "220px"
         },
...
]

Hope this helps!

Regards,
Patrick
Telerik
 
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
 
Tags
Grid
Asked by
David
Top achievements
Rank 1
Answers by
Patrick | Technical Support Engineer, Senior
Telerik team
Share this question
or