From 40f1c5fbc9ddbfda25b87194d064d5d43d5a1926 Mon Sep 17 00:00:00 2001
From: juanf <juanf>
Date: Mon, 13 Apr 2015 09:34:50 +0000
Subject: [PATCH] Fix to store the table configuration correctly.

SVN: 33811
---
 .../html/js/views/VocabularyManager/VocabularyManagerView.js  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js
index 372570078a5..c11a40f590a 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js
@@ -68,7 +68,7 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
 			_this._showVocabulary(e.data.object)
 		}
 		
-		var dataGrid = new DataGridController(null, columns, getDataList, rowClick, true, "VOCABULARY_MANAGER");
+		var dataGrid = new DataGridController(null, columns, getDataList, rowClick, true, "VOCABULARY_TABLE");
 		dataGrid.init(this._dataGridContainer);
 		
 		this._dataGridContainer.prepend($("<legend>").append(" Vocabularies"));
@@ -103,7 +103,7 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
 			callback(dataList);
 		}
 		
-		var dataGrid = new DataGridController(null, columns, getDataList, null);
+		var dataGrid = new DataGridController(null, columns, getDataList, null, true, "VOCABULARY_TERMS_TABLE");
 		dataGrid.init(this._dataGridContainer);
 		
 		this._dataGridContainer.prepend($("<legend>").append(" Terms from vocabulary " + vocabulary.code));
-- 
GitLab