summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5d6d08f)
raw | patch | inline | side by side (parent: 5d6d08f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 2 Jun 2006 07:00:35 +0000 (07:00 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 2 Jun 2006 07:00:35 +0000 (07:00 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3623 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_MultiSelectWindow.inc | patch | blob | history |
index f201660a64c7d8f98059b6bd2bec98d8d9f7760f..2fb9a277e981c2d8ddc3e62efdb2920ba9d68830 100644 (file)
var $SaveAdditionalVars = array(); // Additional Post vars to store
- var $force_height = false;
-
function ClearElementsList()
{
$this->array_Elements = array();
$this->HideFilterPart = $bool;
}
- function ForceMaximumDivHeight($height = "")
- {
- $this->DivHeight = $height;
- if(!empty($height)){
- $this->force_height = true;
- }else{
- $this->force_height = false;
- }
- }
-
-
-
/* Adds a regex input field to the current dialog */
function AddRegex($name,$string,$value,$conn,$image="images/search.png")
{
$smarty->assign("filterName" , $this->filterName);
$smarty->assign("is_headpage" , $this->is_headpage);
- $smarty->assign("force_height",$this->force_height);
-
$display = $smarty->fetch(get_template_path("MultiSelectWindow.tpl"));
return($display);
}