Created
July 15, 2021 00:04
-
-
Save locii/2171b750a262c02bd2fb9afbe9572fa8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
type: 'combo', | |
ref: 'filterByStatus', | |
cls: 'filter-by-status', | |
flex: '0 0 12.5em', | |
placeholder: 'Find tasks by status', | |
clearable: true, | |
keyStrokeChangeDelay: 100, | |
triggers: { | |
filter: { | |
align: 'end', | |
cls: 'b-fa b-fa-filter', | |
}, | |
}, | |
onChange: 'up.onFilterChange', | |
}, | |
{ | |
type: 'combo', | |
ref: 'filterByUsers', | |
cls: 'filter-by-users', | |
flex: '0 0 12.5em', | |
placeholder: 'Find tasks by assigned users', | |
clearable: true, | |
keyStrokeChangeDelay: 100, | |
triggers: { | |
filter: { | |
align: 'end', | |
cls: 'b-fa b-fa-filter', | |
}, | |
}, | |
onChange: 'up.onFilterChange', | |
}, | |
{ | |
type: 'combo', | |
ref: 'filterByTag', | |
cls: 'filter-by-tag', | |
flex: '0 0 12.5em', | |
placeholder: 'Find tasks by tags', | |
clearable: true, | |
keyStrokeChangeDelay: 100, | |
triggers: { | |
filter: { | |
align: 'end', | |
cls: 'b-fa b-fa-filter', | |
}, | |
}, | |
onChange: 'up.onFilterChange', | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment