有没有办法在从 CActiveDataProvider 获取数据的网格中显示一些实际上尚未进入数据库的新行?
这是我的场景..
我必须填写 X 次(账单中产品的数量)并为每一行提供编辑和保存的可能性
Product QTY
product1 3
|
____ Edit item 1 (not yet in the db)
____ Edit item 2 (not yet in the db)
____ Edit item 3 (not yet in the db)
所以它有点像一个主细节网格(我已经把它整理出来怎么做..)但我无法在数据库中还没有的网格上显示东西..
我知道我必须创建一个临时模型数组,例如 $model[]=new MODEL(); 并以某种方式推送到 CActiveDataProvider 但不知道语法...