Skip to content
Snippets Groups Projects
Commit f02e9755 authored by juanf's avatar juanf
Browse files

SSDM-1071 : PAPER - Empty Trashcan

SVN: 32842
parent ddfc5718
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ function StorageManagerView(storageManagerModel, storageFromView, storageToView)
this._storageFromView = storageFromView;
this._storageToView = storageToView;
this._moveBtn = $("<a>", { "class" : "btn btn-default"}).append("Move Selected Samples <span class='glyphicon glyphicon-arrow-right'></span>");
this._moveBtn = $("<a>", { "class" : "btn btn-primary"}).append("Move Selected Samples <span class='glyphicon glyphicon-arrow-right'></span>");
this.repaint = function($container) {
$container.empty();
......
......@@ -73,11 +73,12 @@ function TrashManagerView(trashManagerController, trashManagerModel) {
var dataGrid = new DataGridController(null, columns, getDataList, null);
dataGrid.init(dataGridContainer);
$containerColumn.append(dataGridContainer);
//
// Empty all button
//
this.deleteAllBtn = $("<a>", { "class" : "btn btn-primary", "style" : "margin-top: 10px;"}).append("Empty Trash");
$containerColumn.append(this.deleteAllBtn);
//
$container.append($containerColumn);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment