beforeRenderActionBox

Typ

 

Versionshinweise

16.1

Web Client

check mark

Code

Groovy
void beforeRenderActionBox()

Beschreibung

Diese Methode wird aufgerufen, wenn die Aktions-Box initialisiert und aktualisiert wird.

Beispiele

Groovy
void beforeRenderActionBox()
{
  if(ScriptUtils.equal("E", FieldUtils.getValue("ActStatusKey.Activity")))
  {
	ActionBoxUtils.setEnabled(GUIConstants.ALL_FIELDS);
  }
  if(ScriptUtils.equal("I", FieldUtils.getValue("ActStatusKey.Activity")))
  {
   	ActionBoxUtils.show(false);
  }
}