Interface SystemTexts


public interface SystemTexts
The SystemTexts interface acts as a parent object for all system texts.

System Texts are system provided texts which are used by the Ebase system to provide standardised texts to the end user e.g. standard popup validation error messages, mouseover texts etc. These system texts can be read or changed temporarily as shown below - any changes apply just to the execution of the running form. Please also see the online documentation.

Examples:

 var txt1 = system.texts.getText(21).text;
 system.texts.getText(21).text = "New list header text";
 
Since:
V5.0
  • Method Summary

    Modifier and Type Method Description
    Text getText​(java.lang.String textId)
    Returns the system text Text.
  • Method Details

    • getText

      Text getText​(java.lang.String textId)
      Returns the system text Text.
      Returns:
      system text
      Since:
      V5.0