Sage CRM 2021: Reading additional custom parameters using the Client Side API.

Less than one minute read time.

In the article "Passing an additional parameter to a .NET dll or ASP page from tab and buttons."

I discussed how you can add additional flags to URLs. These additional parameters may also be added to URLs when a page is redirected or as a button is built dynamically.

These parameters can be read by the Client Side API just like any system parameter or context information.

The API has a method called "getArgs()" that allows the URL to be parsed very easily.

E.g.

var contextInfo = crm.getArgs();
crm.infoMessage(contextInfo.AltCaption);