Job event detail page now working. Search expanded to work with boolean an integer types. Added new form generator layout. Fixed pagination bugs. Job cancel/delete working.

This commit is contained in:
chouseknecht
2013-05-21 02:57:34 -04:00
parent 3d3782fcee
commit 8343d20c60
13 changed files with 659 additions and 393 deletions

View File

@@ -21,7 +21,8 @@ angular.module('JobsListDefinition', [])
id: {
label: 'Job ID',
key: true,
desc: true
desc: true,
searchType: 'int'
},
created: {
label: 'Creation Date',
@@ -69,7 +70,7 @@ angular.module('JobsListDefinition', [])
title: 'Cancel',
icon: 'icon-minus-sign',
mode: 'all',
ngClick: 'cancel(\{\{ job.id \}\})',
ngClick: 'deleteJob(\{\{ job.id \}\})',
class: 'btn-danger btn-mini',
awToolTip: 'Cancel job',
ngDisabled: "job.status == 'error' || job.status == 'failed'"