{{ 'PAC.Xpert.InputVariable' | translate: { Default: 'Input Variable' } }}
*
{{ 'PAC.Xpert.FilterBy' | translate: { Default: 'Filter By' } }}
@if (filterByEnabled()) {
@if (conditions()?.length > 0) {
@for (condition of conditions(); track condition.id; let i = $index) {
}
} @else {
{{ 'PAC.Xpert.NoConditions' | translate: { Default: 'No conditions. Please add conditions first.' } }}
}
}
{{ 'PAC.Xpert.ExtractTheNItem' | translate: { Default: 'Extract the Nth Item' } }}
@if (extractByEnabled()) {
{{
'PAC.Xpert.ExtractTheNItemTip'
| translate
: {
Default:
'Extract the Nth item from the list. For example, if you want to extract the first item, enter 1; if you want to extract the last item, enter -1.'
}
}}
}
{{ 'PAC.Xpert.TopN' | translate: { Default: 'Top N' } }}
@if (topNEnabled()) {
{{
'PAC.Xpert.TopNTip'
| translate
: {
Default:
'Extract the top N items from the list. For example, if you want to extract the top 3 items, enter 3.'
}
}}
}
{{ 'PAC.Xpert.SortBy' | translate: { Default: 'Sort By' } }}
@if (sortByEnabled()) {
{{
'PAC.Xpert.SortByTip'
| translate: { Default: 'Sort the items in the list. For example, you can sort by name or date.' }
}}
@if (sortByDescending()) {
} @else {
}
}