1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
$this->breadcrumbs = array(
$model->label(2) => array('index'),
Yii::t('app', 'Administrar'),
);
$this->menu = array(
array('label'=>Yii::t('app', 'Listar') . ' ' . $model->label(2), 'url'=>array('index')),
array('label'=>Yii::t('app', 'Registrar') . ' ' . $model->label(), '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('mzgtparametros-grid', {
data: $(this).serialize()
});
return false;
});
");
?>
<h1><?php echo Yii::t('app', 'Administrar') . ' ' . GxHtml::encode($model->label(2)); ?></h1>
<?php echo GxHtml::link(Yii::t('app', 'Busqueda Avanzada'), '#', array('class' => 'search-button')); ?>
<div class="search-form">
<?php $this->renderPartial('_search', array(
'model' => $model,
)); ?>
</div><!-- search-form -->
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id' => 'mzgtparametros-grid',
'dataProvider' => $model->search(),
'filter' => $model,
'columns' => array(
'PK_PARAMETROS',
'PK_MZGTEVENTOS',
'PK_MZGTPUBLICACIONES',
'MZGTPARAMETROS_CARRERA',
'MZGTPARAMETROS_DEPARTAMENTO',
'MZGTPARAMETROS_FECHAINICIO',
/*
'MZGTPARAMETROS_FECHAFIN',
'PK_MZGTTIPOSEVENTOS',
'PK_MZGTTIPOSPUBLICACIONES',
*/
array(
'class' => 'CButtonColumn',
),
),
)); ?>