PATH:
home
/
letacommog
/
letaweb
/
protected
/
modules
/
admin
/
views
/
category
<div class="row"> <div class="col-md-12"> <div class="panel panel-default"> <div class="panel-title"> <div class="navbar_inner"> <h5>Category list</h5> </div> </div> <div class="panel-body"> <?php $columns = array( array( 'id' => 'autoId', 'class' => 'CCheckBoxColumn', 'selectableRows' => '50', ), array( 'header' => CHtml::encode('ID'), 'name' => 'id', ), array( 'header' => CHtml::encode('Name'), 'name' => 'name', ), array( 'header' => CHtml::encode('Display name'), 'name' => 'display_name', ), array( 'class' => 'CGridButtonColumn', ), ); $form = $this->beginWidget('CActiveForm', array( 'enableAjaxValidation' => true, )); $this->widget('booster.widgets.TbGridView', array( 'type' => 'striped bordered', 'dataProvider' => $model->search(), 'template' => '{items}', 'columns' => $columns, )); ?> <?php $this->endWidget(); ?> </div> </div> </div> </div> <script> function reloadGrid(data) { $.fn.yiiGridView.update('user-grid'); } </script>
[+]
..
[-] index.php
[edit]
[-] form.php
[edit]
[-] create.php
[edit]
[-] midnav.php
[edit]
[-] update.php
[edit]
[-] view.php
[edit]