Relations View is as follow (changes made are also shown)
class C_sizingcalcDetailsAndRelationsView extends DetailsAndRelationsView
{
public function isUniqueToAPage()
{
return true;
}
public static function getDefaultMetadata()
{
$metadata = array(
'global' => array(
'leftTopView' => array(
'viewClassName' => 'C_sizingcalcEditAndDetailsView',
),
'leftBottomView' => array(
'showAsTabbed' => false,
'columns' => array(
array(
'rows' => array(
//New edition -- C_currsysheatcoolsForC_sizingcalcRelatedList
array(
'type' => 'C_currsysheatcoolsForC_sizingcalcRelatedList',
),
array(
'type' => 'C_ductsizesForC_sizingcalcRelatedList',
),
array(
'type' => 'C_floorsqfsForC_sizingcalcRelatedList',
),
array(
'type' => 'C_sizingsummarycalcsForC_sizingcalcRelatedList',
),
)
)
)
),
'rightTopView' => array(
// - Removed to see if changes take affect.
// 'columns' => array(
// array(
// 'rows' => array(
// array(
// 'type' => 'OpenTasksForAccountRelatedList',
// )
// )
// )
// )
)
)
);
return $metadata;
}
}
The view in web hasn't changes after making the above modifications.
Thanks










