Funciona: - Usuario - Empresa git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<?php
|
|
$this->breadcrumbs=array(
|
|
'Usuarios'=>array('index'),
|
|
'Manage',
|
|
);
|
|
|
|
$this->menu=array(
|
|
array('label'=>'List Usuario', 'url'=>array('index')),
|
|
array('label'=>'Create Usuario', 'url'=>array('create')),
|
|
);
|
|
|
|
Yii::app()->clientScript->registerScript('search', "
|
|
$('.search-button').click(function(){
|
|
$('.search-form').toggle();
|
|
return false;
|
|
});
|
|
$('.search-form form').submit(function(){
|
|
$.fn.yiiGridView.update('usuario-grid', {
|
|
data: $(this).serialize()
|
|
});
|
|
return false;
|
|
});
|
|
");
|
|
?>
|
|
|
|
<h1>Manage Usuarios</h1>
|
|
|
|
<p>
|
|
You may optionally enter a comparison operator (<b><</b>, <b><=</b>, <b>></b>, <b>>=</b>, <b><></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'=>'usuario-grid',
|
|
'dataProvider'=>$model->search(),
|
|
'filter'=>$model,
|
|
'columns'=>array(
|
|
'id',
|
|
'email',
|
|
'nombre',
|
|
'apellidos',
|
|
'password',
|
|
'last_login_time',
|
|
array(
|
|
'class'=>'CButtonColumn',
|
|
),
|
|
),
|
|
)); ?>
|