89 lines
3.1 KiB
HTML
89 lines
3.1 KiB
HTML
<div class="vn-pa-md">
|
|
<vn-horizontal>
|
|
<div class="actions-left">
|
|
<vn-button icon="view_column"
|
|
ng-if="$ctrl.viewConfigId"
|
|
ng-click="smartTableColumns.show($event)"
|
|
vn-tooltip="Shown columns">
|
|
</vn-button>
|
|
<div ng-transclude="actions"></div> <!-- transcluded actions -->
|
|
</div>
|
|
<div class="actions-right">
|
|
<vn-button icon="search"
|
|
ng-click="$ctrl.displaySearch()"
|
|
vn-tooltip="Search">
|
|
</vn-button>
|
|
<div class="button-group">
|
|
<vn-button icon="add"
|
|
ng-click="$ctrl.createRow()"
|
|
vn-tooltip="Add new row">
|
|
</vn-button>
|
|
<vn-button icon="undo"
|
|
ng-click="$ctrl.model.undoChanges()"
|
|
vn-tooltip="Undo">
|
|
</vn-button>
|
|
<vn-button icon="delete"
|
|
ng-click="deleteConfirmation.show($event)"
|
|
ng-show="$ctrl.checkedRows.length > 0"
|
|
vn-tooltip="Remove selected rows">
|
|
</vn-button>
|
|
<vn-button icon="save"
|
|
ng-click="$ctrl.saveAll()"
|
|
vn-tooltip="Save data">
|
|
</vn-button>
|
|
</div>
|
|
<div class="button-group">
|
|
<vn-button icon="refresh"
|
|
ng-click="$ctrl.model.refresh()"
|
|
vn-tooltip="Refresh">
|
|
</vn-button>
|
|
<vn-button icon="more_vert"
|
|
ng-click="moreOptions.show($event)"
|
|
vn-tooltip="More">
|
|
</vn-button>
|
|
</div>
|
|
</div>
|
|
</vn-horizontal>
|
|
|
|
<div id="table"></div>
|
|
<!-- Remove this in favour of data-viewer or replace it? -->
|
|
<vn-pagination
|
|
ng-if="$ctrl.model"
|
|
model="$ctrl.model"
|
|
class="vn-pt-md">
|
|
</vn-pagination>
|
|
</div>
|
|
|
|
<vn-confirm
|
|
vn-id="deleteConfirmation"
|
|
on-accept="$ctrl.deleteAll()"
|
|
question="Are you sure you want to continue?"
|
|
message="Remove selected rows">
|
|
</vn-confirm>
|
|
|
|
<vn-crud-model
|
|
vn-id="userViewModel"
|
|
url="UserConfigViews"
|
|
link="{tableCode: $ctrl.viewConfigId, userFk: $ctrl.currentUserId}"
|
|
data="$ctrl.viewConfig"
|
|
auto-load="true">
|
|
</vn-crud-model>
|
|
<vn-popover vn-id="smart-table-columns" message="Fields to show">
|
|
<tpl-body>
|
|
<div class="smart-table-columns vn-pa-md vn-w-xs">
|
|
<h6 class="vn-mb-sm" translate>Check the columns you want to see</h6>
|
|
<vn-horizontal class="vn-mb-md">
|
|
<vn-check ng-repeat="column in $ctrl.columns"
|
|
label="{{column.caption}}"
|
|
ng-model="$ctrl.viewConfig[0].configuration[column.field]">
|
|
</vn-check>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<vn-button
|
|
label="Save"
|
|
ng-click="$ctrl.saveViewConfig()">
|
|
</vn-button>
|
|
</vn-horizontal>
|
|
</div>
|
|
</tpl-body>
|
|
</vn-popover> |