Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我需要在管理员登录客户网格中添加一个带有未确认未确认客户的过滤器。
所以我可以过滤未确认的客户,并要求他们通过点击注册邮件中发送的确认链接来确认他们的注册。
您可以使用confirmation属性来实现这一点。请记住,您必须实现执行如下操作的客户渲染:
confirmation
public function render(Varien_Object $row) { return is_null($row->getData($this->getColumn()->getIndex())) ? 'Confirmed' : 'Unconfirmed'; }
您还必须为该列实现自定义过滤器回调才能使其可过滤。:)