コード例 #1
0
ファイル: Select.php プロジェクト: nsams/koala-framework
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setEditable(false);
     $this->setTriggerAction('all');
     $this->setEmptyMessage(trlKwfStatic('Please select a value'));
 }
コード例 #2
0
 public function __construct($dependetModelRule, $relationToValuesRule, $field_label = null)
 {
     parent::__construct($dependetModelRule, $field_label);
     $this->setRelModel($dependetModelRule);
     $this->setRelationToValuesRule($relationToValuesRule);
     $this->setXtype('superboxselect');
 }
コード例 #3
0
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setValueField(false);
     $this->setTriggerAction('all');
     $this->setCtCls('comboboxtext');
 }