예제 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('sales_order_grid');
     $this->setUseAjax(true);
     $this->setDefaultSort('created_at');
     $this->setDefaultDir('DESC');
     $this->setSaveParametersInSession(true);
 }
예제 #2
0
파일: Orders.php 프로젝트: nemphys/magento2
 /**
  * Initialize grid params
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('billing_agreement_orders');
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
 }
예제 #4
0
 /**
  * Constructor.
  *
  * @see   app/code/core/Mage/Adminhtml/Block/Sales/Order/Mage_Adminhtml_Block_Sales_Order_Grid#__construct()
  * return Dhl_Intraship_Block_Adminhtml_Sales_Order_Grid
  */
 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('widget/grid.phtml');
 }
예제 #5
0
 public function __construct()
 {
     parent::__construct();
     $this->setDefaultSort(false);
     $this->setId('sales_order_grid_archive');
 }
예제 #6
0
 public function __construct()
 {
     parent::__construct();
     $this->setId('sales_order_canceled_grid');
     $this->setDefaultSort('autocancel_date');
 }
예제 #7
0
 function __construct()
 {
     parent::__construct();
     $this->setTemplate('iways_gridplus/widget/grid.phtml');
     $this->setDefaultLimit(Mage::getStoreConfig('Iways_GridPlus/Order/Limit'));
 }