PATH:
home
/
letacommog
/
letaweb
/
protected
/
modules
/
admin
/
views
/
transaction
<div class="body"> <div class="row"> <div class="col-md-12"> <div class="panel"> <div class="panel-title"> <h5>Transaction list</h5> </div> <div class="panel-body"> <?php $columns = array( array( 'header' => CHtml::encode('ID'), 'name' => 'id', ), array( 'header' => CHtml::encode('Subscription'), 'name' => 'subscription_id', ), array( 'header' => CHtml::encode('Transaction ID'), 'name' => 'transaction_id', ), array( 'header' => CHtml::encode('Token'), 'name' => 'token', ), array( 'header' => CHtml::encode('Amount'), 'name' => 'amount', ), array( 'header' => CHtml::encode('Currency'), 'name' => 'currency_code', ), array( 'header' => CHtml::encode('Date Added'), 'name' => 'date_added', ), ); $form = $this->beginWidget('CActiveForm', array( 'enableAjaxValidation' => true, )); $this->widget('booster.widgets.TbGridView', array( 'id' => 'user-grid', 'type' => 'striped bordered', 'dataProvider' => $model->search(), 'filter' => $model, 'columns' => $columns, //'filter'=>$filtersForm, )); ?> <?php $this->endWidget(); ?> </div> </div> </div> </div> </div> <script> function reloadGrid(data) { $.fn.yiiGridView.update('user-grid'); } </script>
[+]
..
[-] view.php
[edit]
[-] form.php
[edit]
[-] midnav.php
[edit]
[-] update.php
[edit]
[-] create.php
[edit]
[-] index.php
[edit]