在我的控制器中,我添加了这样的请求处理程序。然后我像这样局部渲染它-<?= $product_list->render() ?>
我在页面的弹出窗口中调用它,列表中的渲染和分页显示-
小工具未绑定
也没有搜索-如何在其中添加搜索?对不起,我的语法-不是母语。
public function onAddItem(){
set_time_limit(60*60*4);
ini_set('memory_limit','4200M');
$config = $this->makeConfig('$/feegleweb/octoshop/models/product/columns.yaml');
$config->model = new Product();
$config->recordOnClick = 'console.log(:id);';
$config->recordsPerPage = 10;
$config->showSearch = true;
$widget = $this->makeWidget('Backend\Widgets\Lists', $config);
$widget->bindToController();
$this->vars['product_list'] = $widget;
return $this->makePartial('items_list');
}