kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.7 KiB
37 lines
1.7 KiB
11 years ago
|
<div class="ng-modal-window">
|
||
|
<div class="ng-modal-inner">
|
||
10 years ago
|
<div class="modal-header"><i class="icon-close" ng-click="modal.closeMe()" title="{{ ::I18n.t('js.close_popup_title') }}"></i></div>
|
||
11 years ago
|
|
||
10 years ago
|
<h3>{{ ::I18n.t('js.label_columns') }}</h3>
|
||
11 years ago
|
|
||
9 years ago
|
<div cg-busy="vm.promise" class="columns-modal-content select2-modal-content">
|
||
10 years ago
|
<label for="selected_columns" class="hidden-for-sighted">{{ ::I18n.t('js.description_selected_columns') }}</label>
|
||
9 years ago
|
<ui-select multiple sortable="true" ng-model="vm.selectedColumns" theme="select2" id="selected_columns" focus-on="columnsModalOpened" aria-labelledby="column_multiselect_description">
|
||
10 years ago
|
<ui-select-match>
|
||
|
{{$item.title}}
|
||
|
</ui-select-match>
|
||
10 years ago
|
<ui-select-choices repeat="column in vm.unusedColumns | filter: { title: $select.search } | orderBy:'title'"
|
||
10 years ago
|
refresh="updateUnusedColumns($select.selected)" refresh-delay="0">
|
||
10 years ago
|
<div ng-bind-html="column.title | highlight: $select.search"></div>
|
||
|
</ui-select-choices>
|
||
|
</ui-select>
|
||
10 years ago
|
<span class="tooltip--right -multiline" tabindex="0" title data-tooltip="{{ ::I18n.t('js.work_packages.label_column_multiselect') }}" aria-labelledby="column_multiselect_description">
|
||
10 years ago
|
<i class="icon icon-help1"></i>
|
||
|
</span>
|
||
10 years ago
|
<div class="hidden-for-sighted" id="column_multiselect_description">
|
||
10 years ago
|
{{ ::I18n.t('js.work_packages.label_column_multiselect') }}
|
||
10 years ago
|
</div>
|
||
11 years ago
|
</div>
|
||
|
|
||
|
<div>
|
||
10 years ago
|
<button class="button -highlight" ng-click="updateSelectedColumns()">
|
||
10 years ago
|
{{ ::I18n.t('js.modals.button_apply') }}
|
||
10 years ago
|
</button>
|
||
|
<button class="button" ng-click="modal.closeMe()">
|
||
10 years ago
|
{{ ::I18n.t('js.modals.button_cancel') }}
|
||
10 years ago
|
</button>
|
||
11 years ago
|
</div>
|
||
|
|
||
11 years ago
|
</div>
|
||
|
</div>
|