답변:
사용자 정의 모듈에서 grid.php 파일을 편집하십시오.
기본적으로,
public function __construct()
{
parent::__construct();
$this->setId('productsGrid');
// This is the primary key of the database
$this->setDefaultSort('id');
$this->setDefaultDir('ASC');
$this->setSaveParametersInSession(true);
$this->setUseAjax(true);
}
코드를 다음과 같이 변경하십시오.
public function __construct()
{
parent::__construct();
$this->setId('productsGrid');
// This is the primary key of the database
$this->setDefaultSort('id');
$this->setDefaultDir('ASC');
$this->setUseAjax(true);
}
필터 값 base64_encoded를 해당 컨트롤러에 전달해야합니다. 필터 값은에 의해 처리됩니다 Mage_Adminhtml_Block_Widget_Grid::_prepareCollection()
.
값은 먼저 디코딩 된 다음 세션에서 설정됩니다.
$data = $this->helper('adminhtml')->prepareFilterString($filter);
$this->_setFilterValues($data);
grid.js 객체를 인스턴스화하기 시작합니다. 메소드를 살펴 보자 doFilter()
하고 resetFilter()
.