【发布时间】:2018-06-23 05:10:36
【问题描述】:
我创建了一个数据网格并使用oro/data_grids.yml 配置显示数据
datagrids:
app-demo-grid:
source:
type: orm
query:
select:
- po.itemId
- po.itemName
- po.itemDescription
from:
- { table: DemoBundle:PurchaseOrder, alias: po }
columns:
itemId:
label: Item ID
frontend_type: integer
itemName:
label: Item Name
frontend_type: string
actions:
send:
type: navigate
label: Send to Url
link: send_link
icon: send
rowAction: true
问题:从网格操作向控制器传递参数 - 发送不起作用。我的请求中没有更多参数。
【问题讨论】: