From 95d91c879f0f29354710f16d8d8c2b098f4c95ff Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Wed, 27 Aug 2014 13:58:29 +0000 Subject: [PATCH] SSDM-344 : New Free Form Table structure (better excel friendly import/export). SVN: 32380 --- .../html/js/views/SampleForm/widgets/FreeFormTableView.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/widgets/FreeFormTableView.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/widgets/FreeFormTableView.js index 8120b4cfc6b..ab51e096cf2 100644 --- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/widgets/FreeFormTableView.js +++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleForm/widgets/FreeFormTableView.js @@ -225,9 +225,9 @@ function FreeFormTableView(freeFormTableController, freeFormTableModel) { var $toolBar = $("<span>", { 'style' : 'margin-left:150px;' }); // - // CSV events + // TXT events // - var $toolBarBtnUcsv = FormUtil.getButtonWithText('Imp. CSV' ,null).attr('title', 'Import from CSV').tooltipster(); + var $toolBarBtnUcsv = FormUtil.getButtonWithText('Imp. TXT' ,null).attr('title', 'Import from TXT').tooltipster(); var clickUcsvFunc = function(tableData, $wrappedTable) { return function() { _this._freeFormTableController.importCSV(tableData, $wrappedTable); @@ -235,7 +235,7 @@ function FreeFormTableView(freeFormTableController, freeFormTableModel) { } $toolBarBtnUcsv.click(clickUcsvFunc(tableData, $wrappedTable)); - var $toolBarBtnDcsv = FormUtil.getButtonWithText('Exp. CSV' ,null).attr('title', 'Export to CSV').tooltipster(); + var $toolBarBtnDcsv = FormUtil.getButtonWithText('Exp. TXT' ,null).attr('title', 'Export to TXT').tooltipster(); var clickDcsvFunc = function(tableData, $wrappedTable) { return function() { _this._freeFormTableController.exportCSV(tableData, $wrappedTable); -- GitLab