Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

Apps, Widgets, and Controls

Change the language of the "no records" message

  • Last UpdatedJul 18, 2024
  • 1 minute read

You can change the language of the message that appears when there are no records to show in the Alarm Control grid.

To change the language of the "no records" message

  1. Right-click on the canvas and click Scripts. The Edit Scripts dialog box appears.

  2. Click the Add icon and give the script a name, for example ChangeLanguage.

  3. In the Expression box, type:

    intouch:$Language

  4. In the Trigger list, click DataChange.

  5. In the script area, type the following:

    If intouch:$Language == 1033 then ' Switch to English

    AlarmClient1.NoRecordsMessage.Message = "No Records";

    else If intouch:$Language == 1031 then ' Switch to German

    AlarmClient1.NoRecordsMessage.Message = "Keine Einträge";

    else if intouch:$Language == 1036 then ' Switch to French

    AlarmClient1.NoRecordsMessage.Message = "Aucun enregistrement";

    endif;

    endif;

    endif;

  6. Click OK.

TitleResults for “How to create a CRG?”Also Available in