Skip to content
Snippets Groups Projects
Commit c20bce6f authored by vkovtun's avatar vkovtun Committed by vkovtun
Browse files

SSDM-13693: Added a few missing fields in export.

parent 1771f3f9
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -75,6 +75,15 @@ function ArchivingHelperView(archivingHelperController, archivingHelperModel) {
exportableProperty: DataGridExportOptions.EXPORTABLE_FIELD.SAMPLE,
sortable : false
}];
searchView.additionalLastColumns = [{
label : "Size",
property : "size",
exportableProperty: DataGridExportOptions.EXPORTABLE_FIELD.SIZE,
sortable : false,
render : function(data, grid) {
return PrintUtil.renderNumberOfBytes(data.size);
}
}];
searchView._paintRulesPanel($rulesPanel);
searchView._$entityTypeDropdown.val("DATASET");
searchView._$entityTypeDropdown.trigger("change");
......
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