1. <?php
  2. $this->widget('bootstrap.widgets.TbGridView', array(
  3. 'type'=>'striped bordered condensed',
  4. 'dataProvider'=>$model->search(),
  5. 'template'=>"{items}",
  6. 'filter'=>$model,
  7. 'columns'=>array(
  8. array('name'=>'id', 'header'=>'#', 'htmlOptions'=>array('style'=>'width: 40px')),
  9. array('name'=>'name', 'header'=>'Location'),
  10. array(
  11. 'class'=>'CButtonColumn',
  12. 'header'=>'Select',
  13. 'template'=>'{select}',
  14. 'buttons'=>array(
  15. 'select' => array(
  16. 'label'=>'Select',
  17. 'url'=>'CJSON::encode($data)'
  18. 'click'=>'function(){
  19. $("#location_id_dlg").dialog("close");
  20. return $(this).attr("href");
  21. }',
  22. ),
  23. ),
  24. )
  25. )
  26. ));
  27. ?>