/**
  * Render an input field with a prepended text or icon.
  *
  * @param CModel $model The model
  * @param string $attribute The attribute
  * @param string $prepend The text or icon to prepend
  * @param array $htmlOptions
  *
  * @access public
  * @return string
  */
 public function textFieldPrepend($model, $attribute, $prepend, $htmlOptions = array())
 {
     return EBootstrap::activeTextFieldPrepend($model, $attribute, $prepend, $htmlOptions);
 }