layout change for radio list
This commit is contained in:
parent
9c2f6e2135
commit
dc3d0b21a9
|
@ -1241,6 +1241,7 @@ class htmlTableExtendedRadio extends htmlRadio {
|
||||||
parent::__construct($name, $elements, $selectedElement);
|
parent::__construct($name, $elements, $selectedElement);
|
||||||
$this->label = htmlspecialchars($label);
|
$this->label = htmlspecialchars($label);
|
||||||
$this->helpID = $helpID;
|
$this->helpID = $helpID;
|
||||||
|
$this->alignment = htmlElement::ALIGN_TOP;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1722,8 +1723,8 @@ class htmlInputTextarea extends htmlElement {
|
||||||
function __construct($name, $value, $colCount, $rowCount) {
|
function __construct($name, $value, $colCount, $rowCount) {
|
||||||
$this->name = htmlspecialchars($name);
|
$this->name = htmlspecialchars($name);
|
||||||
$this->value = htmlspecialchars($value);
|
$this->value = htmlspecialchars($value);
|
||||||
$this->colCount = $colCount;
|
$this->colCount = htmlspecialchars($colCount);
|
||||||
$this->rowCount = $rowCount;
|
$this->rowCount = htmlspecialchars($rowCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue