TinyMCE Editor

Hallo,

can any body tell me that how to display value on admin.php in same way as we write on editor…

i have problem in admin.php page my output is like <p>llllll</p>, how to remove these <p></p>?????

admin.php

<?php $this->widget(‘zii.widgets.grid.CGridView’, array(

'id'=&gt;'clinicuser-grid',


'dataProvider'=&gt;&#036;model-&gt;search(),


'filter'=&gt;&#036;model,


'columns'=&gt;array(


	


	'user_name',


	'job_description',


	array(


		'name'=&gt;'job_description',


	),


	


	array(


		'class'=&gt;'CButtonColumn',


	),


),

)); ?>

The <p>-tags are inserted by TinyMCE to wrap your content. Dont know how to disable that.

But if you want to display the content as html, you should do something like:




array(

 'name'=>'job_description',

 'type'=>'html

)



or the short edition:




'job_description:html'




Thanks,