Javascript error when loading create opportunity page means that
it is not possible to select a company when using
- Click on tab 'Opportunity'
- Click on 'Create a new opportunity'
Expect to see Company (create new or select
existing):
[_______________]
Instead see
Expect to see Company (create new or select
existing): (create new or select
existing): :
Error message indicated that we are unable to find the object
with id called #account_selector, and it looks like things in
views/opportunities/_top_section.html.haml have been rewritten to
allow the code to be internationalised, by including both versions
of the text and showing/hiding instead of including the text in the
javascript.
Suggested fix - sorry I couldn't work out where the source is
for the cached javascript.
in all.js @function create_account: function(and_focus)
- // $("account_selector").update(" (create new or select existing):");
- $("account_create_title").show();
- $("account_select_title").hide();
in all.js @function select_account: function(and_focus)
- $("account_selector").update(" (create new or
select existing):");
- $("account_create_title").hide();
- $("account_select_title").show();