CListView

Hi there,

I’m using CListView to render data in pure html way(ajaxUpdate==false). But I can still see some hashed code in the html source :


<div class="keys" style="display:none" title="/"><span>f4e0f59d9b8c8bbce49d029a9e332ced49d604cb</span><span>3211279cc60f08f595b6aaccd9827b73d9884cf7</span><span>e42b1d18b877f90a16c078cf372615bd69d5e1bb</span><span>d5b35585c951ecdf7cf67b34ca63cbe87e305204</span><span>61c33aff78f7627ab7b26c2587293787790e7c01</span></div>

How can I get rid of these?

my CListView config:


	$this->widget('zii.widgets.CListView', array(

			'dataProvider'=>$data,

			'itemView'=>'_view',

			'summaryText'=>'',

			'emptyText'=>'empty',

			'cssFile'=>false,

			'ajaxUpdate'=>false,

			'enablePagination'=>false,

			'enableSorting'=>false,

	));	



There is a core method renderKeys() which renders these values irrespective to your settings. Not sure why these values are needed. May be someone from staff can clarify