Supports most clonable (repeatable) field types.
Supports nested groups since 1.0.7
not working according to below code telephone not working fine inside group meta
array(
'id' => 'standard',
// Gropu field
'type' => 'group',
// Clone whole group?
'clone' => true,
// Drag and drop clones to reorder them?
'sort_clone' => true,
// Sub-fields
'fields' => array(
array(
'name' => __('Promoter name', 'rwmb'),
'id' => 'text',
'type' => 'text',
),
array(
'name' => __('Telephone', 'rwmb'),
'id' => 'date',
'type' => 'text',
'clone'=>true
),
),
),