public static function render(CModel $model, ZurmoActiveForm $form, array $excludeItems = array(), $wrapInTr = true, array $trOptions = array())
 {
     $content = parent::render($model, $form, $excludeItems, $wrapInTr, $trOptions);
     $positionParams = static::resolveDefaultParams(Zurmo::t('Core', 'Position'));
     $positionParams['checkboxInputPrefix'] = 'properties[backend][border-negation]';
     $positionElement = new BorderPositionElement($model, null, $form, $positionParams);
     $content .= $positionElement->render();
     return $content;
 }
 public static function render(CModel $model, ZurmoActiveForm $form, array $excludeItems = array(), $wrapInTr = true, array $trOptions = array())
 {
     $content = parent::render($model, $form, $excludeItems, $wrapInTr, $trOptions);
     $content .= BuilderSocialElementLinkEditableElementsUtil::render($model, $form, $excludeItems, $wrapInTr, $trOptions);
     return $content;
 }