addColumn( 'image', 'image', array( 'title' => 'Image', 'imageAttribs' => array('width' => 100, 'height' => 50) ) ); $this->addColumn( 'link', 'title', array( 'title' => 'Name', 'url' => '', 'linkAttributes' => 'target="_blank"', 'params' => array('id' => 'url', 'title' => 'title'), ) ); $this->addColumn('quantity', 'quantity', array('title' => 'Quantity')); $this->addColumn('money', 'price'); $promoObj = new App_ECommerce_Promo_Admin_Obj(); $this->addColumn( 'total', 'rowTotal', array('title' => 'Total', 'promoTypes' => $promoObj->getDPromoType4Select()) ); return $this; } }