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

SSDM-3501 : vocabulary browser view header

SVN: 37956
parent 1b45926b
No related branches found
No related tags found
No related merge requests found
......@@ -648,10 +648,10 @@ function MainController(profile) {
}
this._showVocabularyManager = function() {
var content = this._getBackwardsCompatibleMainContainer();
var views = this._getNewViewModel(true, true, false);
var vocabularyManagerController = new VocabularyManagerController(this);
vocabularyManagerController.init(content);
vocabularyManagerController.init(views);
this.currentView = vocabularyManagerController;
}
......
......@@ -19,7 +19,7 @@ function VocabularyManagerController(mainController) {
this._vocabularyManagerModel = new VocabularyManagerModel();
this._vocabularyManagerView = new VocabularyManagerView(this, this._vocabularyManagerModel);
this.init = function($container) {
this._vocabularyManagerView.repaint($container);
this.init = function(views) {
this._vocabularyManagerView.repaint(views);
}
}
\ No newline at end of file
......@@ -20,8 +20,7 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
this._dataGridContainer = $("<div>");
this._subtitle = $("<legend>");
this.repaint = function($container) {
$container.empty();
this.repaint = function(views) {
//
// Form template and title
......@@ -33,11 +32,14 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
"onsubmit" : ""
});
$containerColumn.append($("<h1>").append("Vocabulary Viewer"));
$containerColumn.append(this._subtitle);
views.header.append($("<h1>").append("Vocabulary Browser"));
views.header.append(this._subtitle);
views.content.append($containerColumn);
this._showVocabularies();
$containerColumn.append(this._dataGridContainer);
$container.append($containerColumn);
}
this._showVocabularies = function() {
......
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