Show TOC

Using Complex Syntax to Add Filters and SortersLocate this document in the navigation structure

Complex syntax can be used to add filters and sorters for aggregation binding. One or multiple objects can be defined.

<table:Table rows="{
    path: '/table', 
    filters: [{
        path: 'field3', 
        operator: 'EQ',
        value1: 'test'
    }],
    sorter: [{
        path: 'field1', 
        descending: false
    }, {
        path: 'field2', 
        descending: true
    }]
 }">
...
</table:Table>