Skip to content

Instantly share code, notes, and snippets.

@Mopkau
Created July 5, 2016 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Mopkau/6e383bf410ebcdb1d2522af784605b52 to your computer and use it in GitHub Desktop.
Save Mopkau/6e383bf410ebcdb1d2522af784605b52 to your computer and use it in GitHub Desktop.
Yii2 ActiveForm with ClearActiveInput
<?php
$form = ActiveForm::begin(
[
'id' => '',
'fieldClass'=>ClearActiveField::className()]
);
?>
<?php echo $form->field($model, 'title')->textInput(['placeholder'=>'Placeholder'])->label(false) ?>
<?php echo $form->field($model, 'count_kids')->dropDownList(range(0,12), ['prompt' => 'Empty'])->label(false) ?>
<?php
ActiveForm::end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment