The oxy_action_list() Function

The oxy_action_list() function allows you to define a list of actions directly in the CSS, rather than referencing them from the associated framework.

The oxy_action_list() function is used from the oxy_buttonGroup() function.

The arguments received by the oxy_action_list() function are a list of actions that are defined with the oxy_action() function. The following properties are supported in the oxy_action_list() function:

oxy_action_list(
          oxy_action(
                name, 'Insert', 
                description, 'Insert an element after the current one', 
                operation, 'ro.sync.ecss.extensions.commons.operations.InsertFragmentOperation', 
                arg-fragment, '<element></element>',
                arg-insertLocation, '.',
                arg-insertPosition, 'After'
          ),
          oxy_action(
                name, 'Delete', 
                description, 'Deletes the current element', 
                operation, 'ro.sync.ecss.extensions.commons.operations.DeleteElementOperation' 
          )
      )
Tip: A code template is available to make it easy to add the oxy_action_list function with the Content Completion Assistant by pressing Ctrl Space (Command Space on OS X) and select the oxy_action_list code template.
Related concepts
The oxy_action() Function
Related information
The Button Group Form Control