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

ELN Refactoring - Refactored Sample Form (Ongoing work)

SVN: 32167
parent e0833f02
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,14 @@ var FormUtil = new function() {
return $pinBtn;
}
this.getHierarchyButton = function(permId) {
var $hierarchyButton = $("<a>", { 'class' : 'btn btn-default'} )
.append($('<img>', { 'src' : './img/hierarchy-icon.png', 'style' : 'width:16px; height:17px;' }));
$hierarchyButton.click(function() {
mainController.changeView('showSampleHierarchyPage', permId);
});
return $hierarchyButton;
}
//
// Get Field with container to obtain a correct layout
//
......
......@@ -64,8 +64,12 @@ function SampleFormView(sampleFormController, sampleFormModel) {
// TITLE BUTTONS
//
if(this._sampleFormModel.mode !== FormMode.CREATE) {
//Pin
$formTitle.append(FormUtil.getPINButton(this._sampleFormModel.sample.permId));
//Hierarchy
$formTitle.append(" ");
$formTitle.append(FormUtil.getHierarchyButton(this._sampleFormModel.sample.permId));
//Edit
if(this._sampleFormModel.mode === FormMode.VIEW) {
$formTitle.append(" ");
var $editButton = $("<a>", { 'class' : 'btn btn-default'} )
......
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