Ticket #778: ticket778.patch

File ticket778.patch, 0.6 KB (added by sp, 3 months ago)

Constructor change to hide dialog initially

  • includes/qcubed/_core/base_controls/QDialogBase.class.php

     
    3838        { 
    3939                protected $strClickedButtonId; 
    4040                protected $blnHasCloseButton = true; 
     41 
     42                public function __construct($objParentObject, $strControlId = null) { 
     43                        parent::__construct($objParentObject, $strControlId); 
     44                        $this->blnDisplay = false; 
     45                } 
    4146                 
    4247                public function getJqControlId() { 
    4348                        return $this->ControlId ."_ctl";