13 respuestas
Gotcha! So here you go:
Change the Behaviour to 'Execute JavaScript' and the Content Source as 'OnClick JavaScript' and write this:
Tip:window.open(
"/a21/e?" +
"CF00N40000002gRZT={!Case.CaseNumber}" +
"&CF00N40000002gRZT_lkid={!Case.Id}" +
"&retURL=%2F{!Account.Id}",
"_blank"
);
Syntax for window.open(...) as per the above snippet:
Note : I just broke the URL to multiple lines for better readability.window.open(url, target);