0

当我单击我的 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.anyfieldGroupCommand存在吗?

4

1 回答 1

1

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

于 2013-03-27T11:14:05.640 回答