Standard Title with Translations

To add a standard title to your page, define your title in the initPage of E1AISCalls.js:

setTitleFieldText("title1", "Number of New Contracts by Month/Year by Date");

Translate your title within jetTranslations. Verify that there is something in translatedArray, and then set the titles with the returned labels.

if(translatedArray)
    {
/* z_15.title comes from external form variable ID */
        title = translatedArray.z__15.title;
        setTitleFieldTranslation("title1", title);
    }