Kalau ane punya tabel
karyawan (id, nama, alamat)coding di contoh script bulk action pada gambar ini jadi gmn y gan supaya ada checklistny?

Attached File(s)
-
tanya-checklist.jpg (124.51K)
Number of downloads: 16
Posted 18 April 2013 - 08:00 AM
karyawan (id, nama, alamat)coding di contoh script bulk action pada gambar ini jadi gmn y gan supaya ada checklistny?
Posted 17 May 2013 - 09:02 PM
<?php $this->widget('bootstrap.widgets.TbExtendedGridView', array( 'type' => 'striped bordered', 'dataProvider'=>$model->search(), 'filter'=>$model, 'template' => "{items}", 'bulkActions' => array( 'actionButtons' => array( array( 'buttonType' => 'button', 'type' => 'primary', 'size' => 'small', 'label' => 'Testing Primary Bulk Actions', 'click' => 'js:function(values){console.log(values);}' ) ), // if grid doesn't have a checkbox column type, it will attach // one and this configuration will be part of it 'checkBoxColumnConfig' => array( 'name' => 'no' ), ), 'columns' => array( 'no', 'nama', 'path', 'ukuran', 'lvl', array( 'class'=>'CButtonColumn', ), ), )); ?>