I am using yii booster to make a password field. When I do update action, I want to show a blank field instead of showing the data taken from model. How can I make it? I don't have any clue how to do it.
This is the code in my view.
<?php
echo $form->passwordFieldGroup($model, 'Password', array(
'label'=>false,
'widgetOptions'=>array(
'htmlOptions' => array()
)));
?>