Browse Source

#735: removed hiddenInput to avoid confusion.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
880b6f9d65
  1. 14
      framework/yii/widgets/ActiveField.php

14
framework/yii/widgets/ActiveField.php

@ -278,20 +278,6 @@ class ActiveField extends Component
} }
/** /**
* Renders a field containing a hidden input.
* This method will generate the "name" and "value" tag attributes automatically for the model attribute
* unless they are explicitly specified in `$options`.
* @param array $options the tag options in terms of name-value pairs. These will be rendered as
* the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
* @return string the rendering result
*/
public function hiddenInput($options = array())
{
$options = array_merge($this->inputOptions, $options);
return $this->render(Html::activeHiddenInput($this->model, $this->attribute, $options));
}
/**
* Renders a field containing a password input. * Renders a field containing a password input.
* This method will generate the "name" and "value" tag attributes automatically for the model attribute * This method will generate the "name" and "value" tag attributes automatically for the model attribute
* unless they are explicitly specified in `$options`. * unless they are explicitly specified in `$options`.

Loading…
Cancel
Save