0

在 Agile Toolkit 框架中,当我添加一个 CRUD 对象时,我可以指定哪些字段在 Grid 模式下可见,哪些字段在 Edit 模式下可见?

我正在使用“setModel()”来填充字段。例如

$crud = $this->add("CRUD");
$crud->setModel("Foo");
4

1 回答 1

3

CRUD == 网格 + 表格

所以你想在 Grid 中显示一堆 Model 字段,在 Form 中显示另一个。

$cr = $this->add('CRUD');
$cr->setModel('YourModel',
    array('name','username','email','password'), <-- Form fields
    array('name','email','password')             <-- Grid fields
);

https://github.com/atk4/atk4/blob/master/lib/View/CRUD.php#L218

于 2013-10-08T16:12:15.313 回答