<?php
/* @var $this ReporteAsociadosController */
/* @var $model ReporteAsociados */

$this->breadcrumbs=array(
	'Reporte Asociadoses'=>array('index'),
	'Manage',
);

$this->menu=array(
	array('label'=>'List ReporteAsociados', 'url'=>array('index')),
	array('label'=>'Create ReporteAsociados', 'url'=>array('create')),
);

Yii::app()->clientScript->registerScript('search', "
$('.search-button').click(function(){
	$('.search-form').toggle();
	return false;
});
$('.search-form form').submit(function(){
	$('#reporte-asociados-grid').yiiGridView('update', {
		data: $(this).serialize()
	});
	return false;
});
");
?>

<h1>Manage Reporte Asociadoses</h1>

<p>
You may optionally enter a comparison operator (<b>&lt;</b>, <b>&lt;=</b>, <b>&gt;</b>, <b>&gt;=</b>, <b>&lt;&gt;</b>
or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done.
</p>

<?php echo CHtml::link('Advanced Search','#',array('class'=>'search-button')); ?>
<div class="search-form" style="display:none">
<?php $this->renderPartial('_search',array(
	'model'=>$model,
)); ?>
</div><!-- search-form -->

<?php $this->widget('zii.widgets.grid.CGridView', array(
	'id'=>'reporte-asociados-grid',
	'dataProvider'=>$model->search(),
	'filter'=>$model,
	'columns'=>array(
		'idasociado',
		'cedula',
		'nombre',
		'apellidos',
		'dirhabitacion',
		'lugarnacimiento',
		/*
		'fechanacimiento',
		'fecha_nacimiento',
		'correoelectronico',
		'tlfhabitacion',
		'celular',
		'estadocivil',
		'cargafamiliar',
		'vivienda',
		'tipovivienda',
		'vehiculo',
		'asegurado',
		'aniocarro',
		'lugartrabajo',
		'empresa',
		'estado',
		'DescripcionEstado',
		'ciudad',
		'cargo',
		'tlfoficina',
		'fechaingreso',
		'fecha_ingreso',
		'oficina',
		'idunidad',
		'unidad',
		'sueldo',
		'tipoinscripcion',
		'porcentaje',
		'porcentaje_descuento',
		'blnborrado',
		'fecha_registro',
		'activo_aportes',
		*/
		array(
			'class'=>'CButtonColumn',
		),
	),
)); ?>
