div
// bootstrap row
$this->addFormItem([
'id' => 'main-row',
'type' => 'div',
'class' => 'row'
]);
// bootstrap column
// this column will be shown on left side and
// it will show image field
$this->addFormItem([
'id' => 'left-col',
'parent_id' => 'main-row',
'type' => 'div',
'class' => 'col-md-4'
]);
// bootstrap column
// this column will be shown on right side and
// it will show fields other than image
$this->addFormItem([
'id' => 'right-col',
'parent_id' => 'main-row',
'type' => 'div',
'class' => 'col-md-8'
]);Last updated