Skip to content

Instantly share code, notes, and snippets.

@DeaVenditama
Created December 5, 2019 08:24
Show Gist options
  • Save DeaVenditama/95304128cc3166d19540c025b7de3829 to your computer and use it in GitHub Desktop.
Save DeaVenditama/95304128cc3166d19540c025b7de3829 to your computer and use it in GitHub Desktop.
simpeg part 1.views/pegawai/_form.php
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use yii\jui\DatePicker;
/* @var $this yii\web\View */
/* @var $model app\models\Pegawai */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="pegawai-form">
<?php $form = ActiveForm::begin([]); ?>
<?= $form->field($model, 'nip')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'email')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'password')->passwordInput() ?>
<?= $form->field($model, 'telepon')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'nama')->textarea(['rows' => 1]) ?>
<?= $form->field($model, 'tempat_lahir')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'tanggal_lahir')->widget(DatePicker::class, [
'language' => 'id',
'dateFormat' => 'dd-MM-yyyy',
'options'=>[
'class' => 'form-control',
'style' => [
'cursor'=>'pointer'
]
]
]) ?>
<?= $form->field($model, 'agama')->dropDownList(
Yii::$app->helper->listAgama(),
['prompt'=>'Pilih Agama']
); ?>
<?= $form->field($model, 'jenis_kelamin')->radioList(
Yii::$app->helper->listJenisKelamin()
); ?>
<?= $form->field($model, 'nikah')->dropDownList(
Yii::$app->helper->listStatusNikah(),
['prompt'=>'Pilih Status Nikah']);
?>
<?= $form->field($model, 'status_pegawai')->radioList(
Yii::$app->helper->listStatusPegawai());
?>
<?= $form->field($model, 'alamat')->textarea(['rows' => 6]) ?>
<div class="form-group text-right">
<?= Html::submitButton('Simpan', ['class' => 'btn btn-lg btn-success']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
<?php
$this->registerCss("
input[type='radio']
{
margin-left: 10px;
margin-right: 5px;
}"
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment