diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-07-02 14:24:21 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-02 14:24:21 -0700 |
| commit | 85e677b86fc37c54e6de2b06340351a28f5a5916 (patch) | |
| tree | 11148e2c292bd1a43b7cf6c2f5212a6ca8b03e75 /rt/share/html/Admin/Elements/AddCustomFieldValue | |
| parent | e5ab051ccdb7637d8dd2f0ed9b4fe9aaaf1d1100 (diff) | |
| parent | 92aedddd3684167abb60cd3f1d77bbc156c592e6 (diff) | |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'rt/share/html/Admin/Elements/AddCustomFieldValue')
| -rwxr-xr-x | rt/share/html/Admin/Elements/AddCustomFieldValue | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/rt/share/html/Admin/Elements/AddCustomFieldValue b/rt/share/html/Admin/Elements/AddCustomFieldValue index 4871f7a17..4a68c369d 100755 --- a/rt/share/html/Admin/Elements/AddCustomFieldValue +++ b/rt/share/html/Admin/Elements/AddCustomFieldValue @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -54,7 +54,7 @@ <th><&|/l&>Name</&></th> <th><&|/l&>Description</&></th> % if ( $CustomField->Type ne 'Combobox' ) { -<th><&|/l&>Category</&></th> +<th class="categoryheader"><&|/l&>Category</&></th> % } </tr> @@ -68,16 +68,18 @@ % my $BasedOnObj = $CustomField->BasedOnObj; % if ( $BasedOnObj and $BasedOnObj->id ) { % my $Categories = $BasedOnObj->Values; -<select name="<% $paramtag %>-Category" size="1"> +<select class="editcategory" name="<% $paramtag %>-Category" size="1"> <option value=""><&|/l&>(no value)</&></option> % while (my $Value = $Categories->Next) { <option value="<% $Value->Name %>"><% $Value->Name %></option> % } % } else { -<input type="text" size="10" name="<% $paramtag %>-Category" value="" /> +<input type="text" size="10" class="editcategory" name="<% $paramtag %>-Category" value="" /> % } </td> % } + +% $m->callback(CallbackName => 'AfterCustomFieldValueInput', CustomFieldObj => $CustomField, ARGSRef => \%ARGS ); </tr> </table> |
