addColumn('no', 'no'); $this->addColumn( 'date', 'added', array('title' => 'Created', 'orderBy' => 'added', 'format' => '%m/%d/%Y %l:%M %p') ); $this->addColumn('text', 'code', array('orderBy' => 'code', 'title' => 'Promo Code')); $this->addColumn( 'date', 'startDate', array('title' => 'Start Date', 'orderBy' => 'startDate', 'format' => '%m/%d/%Y') ); $this->addColumn( 'date', 'endDate', array('title' => 'End Date', 'orderBy' => 'endDate', 'format' => '%m/%d/%Y', 'emptyText' => '-') ); $this->addColumn( 'text', 'usageCount', array('title' => 'Usage Count', 'orderBy' => 'usageCount', 'attribs' => array('align' => 'center')) ); $this->addColumn('html', 'description', array('title' => 'Description')); $this->addColumn('options', 'options'); return $this; } }