Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Avila2017-05-23 01:34:44 +0000
committerAngel Avila2017-05-23 01:34:44 +0000
commit2e1c2f19e61baed51bef6cbb36836e0347174041 (patch)
tree1d7da5f54836f8681029754a5febfeed6126bf69 /plugins
parentb26873c97dc0644686fd816f3086da0372651067 (diff)
downloadorg.eclipse.osee-2e1c2f19e61baed51bef6cbb36836e0347174041.tar.gz
org.eclipse.osee-2e1c2f19e61baed51bef6cbb36836e0347174041.tar.xz
org.eclipse.osee-2e1c2f19e61baed51bef6cbb36836e0347174041.zip
bug: Fix Dispo Admin view not toggeling to edit mode0.25.0.v201705230315-NR
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js b/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js
index c22c1d45663..ddbda580a9d 100644
--- a/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js
+++ b/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js
@@ -60,7 +60,7 @@ app.controller('adminController', [
selectedItems: $scope.selectedItems,
showGroupPanel: false,
enableGridMenu: false,
- enableCellEdit: false
+ enableCellEdit: true
}
var editCellTmpl = '<input editable="true" >'
@@ -75,28 +75,33 @@ app.controller('adminController', [
displayName: "Import",
width: '9%',
enableColumnMenu: false,
+ enableCellEdit: false,
cellTemplate: importCellTmpl
}, {
field: 'name',
displayName: "Export",
width: '9%',
enableColumnMenu: false,
+ enableCellEdit: false,
cellTemplate: exportCellTmpl
}, {
field: 'name',
displayName: "Last Operation",
width: '15%',
enableColumnMenu: false,
+ enableCellEdit: false,
cellTemplate: lastOperationCellTmpl
}, {
field: 'name',
displayName: "Name",
width: '20%',
enableColumnMenu: false,
+ enableCellEdit: false,
}, {
field: 'importPath',
displayName: "Path",
enableColumnMenu: false,
+ enableCellEdit: false,
}];
$scope.columnDefs2 = [{
@@ -104,28 +109,33 @@ app.controller('adminController', [
displayName: "Import",
width: '9%',
enableColumnMenu: false,
+ enableCellEdit: false,
cellTemplate: importCellTmpl
}, {
field: 'name',
displayName: "Export",
width: '9%',
enableColumnMenu: false,
+ enableCellEdit: false,
cellTemplate: exportCellTmpl
}, {
field: 'name',
displayName: "Last Operation",
width: '15%',
enableColumnMenu: false,
+ enableCellEdit: false,
cellTemplate: lastOperationCellTmpl
}, {
field: 'name',
displayName: "Name",
width: '20%',
enableColumnMenu: false,
+ enableCellEdit: true,
}, {
field: 'importPath',
displayName: "Path",
enableColumnMenu: false,
+ enableCellEdit: true,
}, {
field: 'name',
displayName: "",

Back to the top