Using Complex Syntax to Add Filters and Sorters

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

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