Removed the Select button that was to the right of callback key on Job Template.

This commit is contained in:
chouseknecht
2013-06-27 15:59:48 -04:00
parent d387f013b7
commit 18ac049860
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ angular.module('JobEventsListDefinition', [])
fields: { fields: {
created: { created: {
label: 'Creation Date', label: 'Date',
key: true, key: true,
nosort: true, nosort: true,
notSearchable: true, notSearchable: true,

View File

@@ -34,7 +34,7 @@ angular.module('JobsListDefinition', [])
link: true link: true
}, },
created: { created: {
label: 'Creation Date', label: 'Date',
link: true link: true
}, },
status: { status: {

View File

@@ -233,8 +233,8 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
if (field.genMD5) { if (field.genMD5) {
html += " \n<button class=\"btn\" ng-click=\"genMD5('" + fld + "')\" " + html += " \n<button class=\"btn\" ng-click=\"genMD5('" + fld + "')\" " +
"aw-tool-tip=\"Generate " + field.label + "\" data-placement=\"top\" id=\"" + fld + "-gen-btn\"><i class=\"icon-repeat\"></i></button>\n"; "aw-tool-tip=\"Generate " + field.label + "\" data-placement=\"top\" id=\"" + fld + "-gen-btn\"><i class=\"icon-repeat\"></i></button>\n";
html += " \n<button style=\"margin-left: 10px;\" class=\"btn\" ng-click=\"selectAll('" + fld + "')\" " + /*html += " \n<button style=\"margin-left: 10px;\" class=\"btn\" ng-click=\"selectAll('" + fld + "')\" " +
"aw-tool-tip=\"Select " + field.label + " for copy\" data-placement=\"top\" id=\"" + fld + "-copy-btn\"><i class=\"icon-copy\"></i></button>\n"; "aw-tool-tip=\"Select " + field.label + " for copy\" data-placement=\"top\" id=\"" + fld + "-copy-btn\"><i class=\"icon-copy\"></i></button>\n";*/
html += "</div>\n"; html += "</div>\n";
} }
if (field.ask) { if (field.ask) {