Beispiel #1
0
 public function onCreate()
 {
     parent::onCreate();
     $this->setScrollable(false);
     $this->setFieldSet(true);
     $this->setRender('fieldset');
 }
Beispiel #2
0
 public function onCreate()
 {
     parent::onCreate();
     $this->setBox();
     $this->setClass('mPanelBody');
     $this->setDisposition(MContainer::DISPOSITION_HORIZONTAL);
 }
Beispiel #3
0
 public function onCreate()
 {
     parent::onCreate();
     $this->setLabelMode(MFieldLabel::LABEL_ABOVE);
     $this->setShowLabel(true);
     $this->setDisposition(MContainer::DISPOSITION_VERTICAL);
 }
Beispiel #4
0
 public function onCreate()
 {
     parent::onCreate();
     $this->setDisposition(MContainer::DISPOSITION_HORIZONTAL);
 }
Beispiel #5
0
 public function onCreate()
 {
     parent::onCreate();
     $this->setId('form' . uniqid());
     $this->tagId = $this->className . uniqid();
     $this->method = 'post';
     $this->return = false;
     $this->fields = new StdClass();
     $this->buttons = array();
     $this->onSubmit = new MStringList(false);
     $this->layout = array();
     $this->labelWidth = NULL;
 }