diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-01-25 15:08:07 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-01-25 15:08:07 +0000 |
| commit | 3d3f9639bc0524d6085d11041d70d23fbbda1c88 (patch) | |
| tree | 6750314aafcbb445cfc34e25f812e1daf1ae0140 /frontends/php/include/classes/cformtable.inc.php | |
| parent | 6a0a2faf91cefb2d62cca7dc6faf685b5e90df03 (diff) | |
| download | zabbix-3d3f9639bc0524d6085d11041d70d23fbbda1c88.tar.gz zabbix-3d3f9639bc0524d6085d11041d70d23fbbda1c88.tar.xz zabbix-3d3f9639bc0524d6085d11041d70d23fbbda1c88.zip | |
- Frontend improvements (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2564 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes/cformtable.inc.php')
| -rw-r--r-- | frontends/php/include/classes/cformtable.inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontends/php/include/classes/cformtable.inc.php b/frontends/php/include/classes/cformtable.inc.php index 3af7acae..1adb45d0 100644 --- a/frontends/php/include/classes/cformtable.inc.php +++ b/frontends/php/include/classes/cformtable.inc.php @@ -39,11 +39,21 @@ $this->SetAlign('center'); $this->SetHelp(); + $this->AddItemToTopRow("<a name=\"form\"></a>"); + $this->AddVar("form","1"); $this->bottom_items = new CCol(NULL,'form_row_last'); $this->bottom_items->SetColSpan(2); } + function SetAction($value) + { + if(!is_string($value)) + { + return $this->error("Incorrect value for SetAlign [$value]"); + } + parent::SetAction($value."#form"); + } function SetAlign($value) { if(!is_string($value)) |
