Esempio n. 1
0
 public function init()
 {
     $this->setDisableLoadDefaultDecorators(true);
     $this->setDecorators(array(array('ViewScript', array('viewScript' => 'form/quanlykho_layout.phtml')), 'Form'));
     $data = new My_Data();
     $opKhoHang = $data->getOpKhoSoi();
     //$chonkhohang->setAttrib('class', 'formEdit')->setValue($khohang[0]['MaKho']);
     $khohang = $this->createElement('select', 'mykhohang', array('multioptions' => $opKhoHang, 'decorators' => array('ViewHelper')));
     $them = $this->createElement('submit', 'them', array('decorators' => array('ViewHelper'), 'label' => 'Chọn'));
     $khohang->setAttrib('class', 'formEdit');
     $this->addElement($khohang)->addElement($them);
 }
 public function init()
 {
     $this->setDisableLoadDefaultDecorators(true);
     $this->setDecorators(array(array('ViewScript', array('viewScript' => 'formmoi/muasoi_layout.phtml')), 'Form'));
     $data = new My_Data();
     $opSoi = $data->getOptionLoaiSoi();
     $opNCC = $data->getOptionNCC();
     $opKhoSoi = $data->getOpKhoSoi();
     $nhacungcap = $this->createElement('select', 'nhacungcap', array('multioptions' => $opNCC, 'decorators' => array('ViewHelper')));
     $loaisoi = $this->createElement('select', 'loaisoi', array('multioptions' => $opSoi, 'decorators' => array('ViewHelper')));
     $sotansoi = $this->createElement('text', 'sotansoi', array('decorators' => array('ViewHelper')));
     $ngaymua = $this->createElement('text', 'ngaymua', array('decorators' => array('ViewHelper')));
     $tongtien = $this->createElement('text', 'thanhtien', array('decorators' => array('ViewHelper')));
     $nhapkhosoi = $this->createElement('select', 'nhapkhosoi', array('multioptions' => $opKhoSoi, 'decorators' => array('ViewHelper')));
     $them = $this->createElement('submit', 'them', array('decorators' => array('ViewHelper'), 'label' => 'Thêm'));
     $nhacungcap->setAttrib('class', 'formEdit');
     $loaisoi->setAttrib('class', 'formEdit');
     $nhapkhosoi->setAttrib('class', 'formEdit');
     $this->addElement($nhacungcap)->addElement($loaisoi)->addElement($sotansoi)->addElement($tongtien)->addElement($ngaymua)->addElement($nhapkhosoi)->addElement($them);
 }