remove from required field

thisshould be really simple i need a required field but dont want the * to be displayed

neone?

use label instead of labelEx

http://www.yiiframework.com/doc/api/CHtml#activeLabel-detail

Not use




<div class="row">

				<?php echo $form->labelEx($model,'title'); ?>

			</div>



Use




<div class="row">

				<?php echo $form->label($model,'title'); ?>

			</div>