RenderAsDialog now takes into account its "width" parameter.

SVN:trunk[3382]
This commit is contained in:
Denis Flaven
2014-10-28 14:49:15 +00:00
parent 047166f002
commit ebb3767ee4

View File

@@ -351,7 +351,7 @@ EOF
<<<EOF
$('#$sDialogId').dialog({
height: 'auto',
width: 500,
width: $iDialogWidth,
modal: true,
title: '$sDialogTitle',
buttons: [
@@ -813,7 +813,7 @@ class DesignerLabelField extends DesignerFormField
{
$sId = $this->oForm->GetFieldId($this->sCode);
$sName = $this->oForm->GetFieldName($this->sCode);
return array('label' => $this->sLabel, 'value' => $sDescription);
return array('label' => $this->sLabel, 'value' => $this->sDescription);
}
public function ReadParam(&$aValues)