You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An <action> element has
- a mandatory title attribute
- a mandatory <command> child element
- an optional <enable_if> child element
title is a translatable text string describing the action
<enable_if> is a single expression. When the result of calling eval on the expression is true, the command my be run. If no enable_if node is present, the command default to be enabled all of the time.
<command> is the Python code to implement the action. The code is exec()'d in the context of the EditForm class
0 commit comments