Displaying 91-100 of 100 result(s).
Login Date | Company | Name | Age |
---|---|---|---|
2012-03-26 | Lavasoft | Dickson, Britanney E. | 29 |
Lycos | Wolf, Bethany J. | 44 | |
Yahoo | Branch, Abdul Q. | 40 | |
Macromedia | Blackburn, Rhona C. | 24 | |
Frederick, Colette N. | 31 | ||
Adobe | May, Lance L. | 16 | |
Altavista | Emerson, Sara W. | 33 | |
Sibelius | Mckenzie, Desirae Z. | 35 | |
Finale | Munoz, Madeline W. | 20 | |
Altavista | Dorsey, Susan J. | 62 |
$this->widget('ext.groupgridview.GroupGridView', array( 'id' => 'grid1', 'dataProvider' => $dp, 'mergeColumns' => array('login_date'), 'columns' => array( 'login_date', 'company', 'name', 'age', ), ));Controller:
public function actionOneRowspan() { $dp = new CActiveDataProvider('User', array( 'sort'=>array( 'attributes'=>array( 'login_date', ), 'defaultOrder' => 'login_date', ), 'pagination' => array( 'pagesize' => 30, ), )); $this->render('onerowspan', array('dp' => $dp)); }CSS:
/* grid border */ .grid-view table.items th, .grid-view table.items td { border: 1px solid gray !important; } /* disable selected for merged cells */ .grid-view td.merge { background: none repeat scroll 0 0 #F8F8F8; }