mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
* fix(datatables): allow selecting range using shift (#344) * feat(datatables): more intuitive batch select behaviour * feat(datatables): add overridable function called on selection change * refactor(datatables): remove custom selectAll on Generic-extending Controllers * fix(datatables): stored state data retrieval on Generic-extanding datatables controllers * refactor(datatables): remove code duplication between GenericController and extending controllers
13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
angular.module('portainer.integrations.storidge').component('storidgeSnapshotsDatatable', {
|
|
templateUrl: './storidgeSnapshotsDatatable.html',
|
|
controller: 'GenericDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
removeAction: '<'
|
|
}
|
|
});
|