Pernahkah anda perhatikan ketika ketika melakukan login ke suatu halaman web, secara otomatis focus sudah berada di textfield username?
Di Yii, cara buat default focus sangat mudah. Perhatikan contoh code berikut:
Di Yii, cara buat default focus sangat mudah. Perhatikan contoh code berikut:
<?php
$form = $this->beginWidget('CActiveForm', array(
'id' => 'login-form',
'enableClientValidation' => true,
'focus' => array($model, 'username'), ));
?>
Comments
Post a Comment