E
egarcia
Guest
Hello gryphon, Your filter in the Grid setup should look like the following: serverPaging: true, serverFiltering: true, serverSorting: true, filter: { field: "Name", operator: "endswith", value: "e" }, See a running example at oemobiledemo.progress.com/.../example014b.html This filter expression is a filter expression for the Kendo UI DataSource: docs.telerik.com/.../datasource docs.telerik.com/.../datasource There are 3 components working together to perform the filtering: 1) Kendo UI DataSource 2) JSDO 3) Business Entity using the JSON Filter Pattern - mappingType: "JFP" The Kendo UI DataSource uses a Kendo UI filter which passes internally to the JSDO (JSDO DataSource / transport). The JSDO uses the mappingType ("JFP") and capabilities defined via the annotations and listed in the catalog, to convert the Kendo UI filter into a string using the JSON Filter Pattern, i.e., a JSON object serialized into string with the capabilities as properties representing the query. (Multiple parameters go into the string.) The Business Entity receives the filter string and uses the code from the documentation (or your own implementation) to extract the parameters and process the query. You do not need to use the capabilities directly. The JSDO does the mapping internally. Please let me know if you need more information on this. Edsel
Continue reading...
Continue reading...