diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-09-04 22:54:18 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-09-04 22:54:18 -0700 |
commit | 9327f3d24c49da3200413966d153e8415c26e744 (patch) | |
tree | 94a2790f60c7fe5202242a3f99b9981c38c4de00 | |
parent | 4d10679f7b649d9343f74503b14d17fc2831c40f (diff) |
fix sales person dropdown for single agent, RT#23402
-rw-r--r-- | httemplate/elements/tr-select-sales.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/elements/tr-select-sales.html b/httemplate/elements/tr-select-sales.html index b69b3d8b6..c29e0d70c 100644 --- a/httemplate/elements/tr-select-sales.html +++ b/httemplate/elements/tr-select-sales.html @@ -81,7 +81,11 @@ Example: function <% $field %>_agentnum_changed(what) { what.form.<% $field %>.disabled = 'disabled'; //disable sales dropdown - agentnum = what.options[what.selectedIndex].value; + if ( what.type == 'hidden' ) { + agentnum = what.value; + } else { + agentnum = what.options[what.selectedIndex].value; + } function update_<% $field %>(sales) { |