GroupCommand Extra Param(record.data。)

时间:2013-03-06 14:16:14

标签: .net extjs command ext.net

当我点击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还是以其他方式使用?

1 个答案:

答案 0 :(得分:1)

GroupCommand事件在单击的记录组的上下文中触发。因此,“记录”参数不会有多大意义。因此,单击的组所包含的记录数组将传递到GroupCommand侦听器中。好吧,正如@ assoline所述。