public function __construct($objParentControl, $strControlId = null)
 {
     parent::__construct($objParentControl, $strControlId);
     $this->strTemplate = __DOCROOT__ . __TPL_ASSETS__ . '/panels/facebook/MJaxFacebookLoginPanel.tpl.php';
     $this->lnkLogin = new MJaxLinkButton($this);
     $this->lnkLogin->Text = 'Facebook Login';
 }
 public function __construct($objParentControl, $strControlId = null)
 {
     parent::__construct($objParentControl, $strControlId);
     $this->objStyle->Position = 'fixed';
     $this->objStyle->Top = '100Px';
     $this->objStyle->Left = '0Px';
     $this->objStyle->Width = '100%';
     $this->objStyle->Overflow = 'hidden';
     //$this->objStyle->Height = '100%';
 }
 public function __construct($objParentControl, $strControlId = null, $intIncriment = 400)
 {
     parent::__construct($objParentControl, $strControlId);
     $this->intIncriment = $intIncriment;
     $cssClass = MJaxApplication::CssClass(MJaxCssClass::SCROLLBAR_HOLDER);
     $this->AddCssClass($cssClass);
     $cssClass = MJaxApplication::CssClass(MJaxCssClass::SCROLLBAR_SLIDER);
     $this->pnlSlider = new MJaxPanel($this, 'pnlSlider' . $this->strControlId);
     $this->pnlSlider->AddCssClass($cssClass);
 }
 public function __construct($objParentControl, $strControlId = null, $intWidth = 400, $intHeight = 200)
 {
     parent::__construct($objParentControl, $strControlId);
     $this->ApplyPlugin(new MJaxJqFancySlideShowPlugin($this->objForm, array("width" => $intWidth, "height" => $intHeight)));
 }
 public function __construct($objParentControl, $strControlId = null)
 {
     parent::__construct($objParentControl, $strControlId);
     $this->ApplyPlugin(new MJaxNivoSlideShowPlugin($this->objForm));
 }
 public function __construct($objParentControl, $strControlId = null)
 {
     parent::__construct($objParentControl, $strControlId);
     $this->strTemplate = __DOCROOT__ . __VIRTUAL_DIRECTORY__ . __TPL_ASSETS__ . '/mjax_panels/' . get_class($this) . '.tpl.php';
 }