当我点击GroupCommand时,出现此错误:
"ReferenceError: record is not defined"
这是代码:
<DirectEvents>
<GroupCommand OnEvent="GrdHorarios_GroupCommand">
<EventMask ShowMask="true" MinDelay="2000" Msg="Carregando" />
<ExtraParams>
<ext:Parameter Value="record.data.IDBDRElenco" Mode="Raw" Name="elencoId">
</ext:Parameter>
<ext:Parameter Value="command" Mode="Raw" Name="commandName">
</ext:Parameter>
</ExtraParams>
</GroupCommand>
</DirectEvents>
我可以在record.data.anyfield
中使用GroupCommand
还是以其他方式使用?
答案 0 :(得分:1)
GroupCommand事件在单击的记录组的上下文中触发。因此,“记录”参数不会有多大意义。因此,单击的组所包含的记录数组将传递到GroupCommand侦听器中。好吧,正如@ assoline所述。