addColumn('no', 'no'); $this->addColumn( 'image', 'image' ); $this->addColumn('text', 'sku', ['orderBy' => 'sku', 'title' => 'SKU']); $this->addColumn('text', 'title', array('orderBy' => 'title')); $this->addColumn('text', 'categoryTitle', ['title' => 'Category', 'orderBy' => 'categoryTitle']); $this->addColumn('link_enum', 'show', array('title' => 'Show', 'orderBy' => 'show')); $this->addColumn('money', 'price', array('orderBy' => 'price')); $this->addColumn('options', 'options'); return $this; } }