예제 #1
0
 /**
  * Get control prototype of the initial TextInput
  *
  * @return Html
  */
 public function getInputPrototype()
 {
     return parent::getControlPrototype();
 }
예제 #2
0
파일: TextFilter.php 프로젝트: bazo/Tatami
 public function getFormControl()
 {
     $input = new TextInput($this->name);
     $input->getControlPrototype()->class = 'text-filter';
     return $input;
 }