public function __construct($parentUIObject, $dialogName, $dialogTitle, $buttonLabel, $formName, $formMethod, $formAction, $buttonType, $paramPrefix, $additionalParamArray, $fullList, $buttonSize)
 {
     parent::__construct($parentUIObject, $dialogName, $dialogTitle, $buttonLabel, $formName, $formAction, $buttonSize);
     $this->maxPerColumn = self::MAX_PER_COLUMN;
     $this->maxColumnCount = self::MAX_COLUMN_COUNT;
     $this->formName = $formName;
     $this->formMethod = $formMethod;
     $this->parameterPrefix = $paramPrefix;
     $this->buttonType = $buttonType;
     $this->additionalParamArray = $additionalParamArray;
     $this->fullList = $fullList;
 }
 public function __construct($parentUIObject, $dialogName, $dialogTitle, $buttonLabel, $formName, $formMethod, $formAction, $formElementName, $formElementId, $includeMe, $excludeIdListStr, $includeLists, $additionalParamArray, $buttonSize, $dataSource)
 {
     parent::__construct($parentUIObject, $dialogName, $dialogTitle, $buttonLabel, $formName, $formAction, $buttonSize);
     $this->formName = $formName;
     $this->formMethod = $formMethod;
     $this->additionalParamArray = $additionalParamArray;
     $this->dataSource = $dataSource;
     $this->formElementName = $formElementName;
     $this->formElementId = $formElementId;
     $this->includeMe = $includeMe;
     $this->excludeIdListStr = $excludeIdListStr;
     $this->includeLists = $includeLists;
 }