buildMVCGroup(*)

Purpose

Create a new MVC group instance, which may contain non-standard members (like actions, dialogs, etc).

Examples

class SampleController {
    def action = { evt = null ->
        MVCGroup group = buildMVCGroup('Other') 
    }
}

Description

This method lets you create new instances of an MVC group. There are several ways to invoke this method depending on your needs

Use this method when building a group that may contain additional MVC members as createMVCGroup() returns strict MVC members only (Model, View, Controller).

Fired Events: