Attached onChange listeners to project tree filter parameters
FEA: ItEr77S15FilteringEnhancements
This commit is contained in:
parent
fb68757b6d
commit
7c6733e579
1 changed files with 4 additions and 4 deletions
|
|
@ -23,7 +23,7 @@
|
|||
<label value="${i18n:_('Task')}"
|
||||
tooltiptext="${i18n:_('Select required criteria set and press filter button')}"/>
|
||||
<textbox id="filterNameOrderElement" width="100px"
|
||||
onOK="treeController.onApplyFilter()" />
|
||||
onChange="treeController.onApplyFilter()" />
|
||||
<label value="${i18n:_('with')}"/>
|
||||
<bandboxMultipleSearch id="bdFiltersOrderElement" widthBandbox="260px" widthListbox="550px"
|
||||
finder="orderElementsMultipleFiltersFinder" />
|
||||
|
|
@ -38,12 +38,12 @@
|
|||
<popup id="filterOptionsPopup" sclass="filter-options-popup">
|
||||
<hbox align="pack">
|
||||
<label value="${i18n:_('from')}"/>
|
||||
<datebox id="filterStartDateOrderElement" constraint = "@{treeController.checkConstraintStartDate}" />
|
||||
<datebox id="filterStartDateOrderElement" constraint = "@{treeController.checkConstraintStartDate}" onChange="treeController.onApplyFilter()" />
|
||||
<label value="${i18n:_('to')}"/>
|
||||
<datebox id="filterFinishDateOrderElement" constraint = "@{treeController.checkConstraintFinishDate}" />
|
||||
<datebox id="filterFinishDateOrderElement" constraint = "@{treeController.checkConstraintFinishDate}" onChange="treeController.onApplyFilter()" />
|
||||
</hbox>
|
||||
<hbox align="pack">
|
||||
<checkbox id="labelsWithoutInheritance" checked="false" label="${i18n:_('Labels without inheritance')}"/>
|
||||
<checkbox id="labelsWithoutInheritance" checked="false" label="${i18n:_('Labels without inheritance')}" onChange="treeController.onApplyFilter()" />
|
||||
</hbox>
|
||||
</popup>
|
||||
</hbox>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue