Show TOC

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

Extended 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>