Hi, i have an issue with rendering GridCommands after expand groups.

Here is my GridCommand
<ext:CommandColumn runat="server" Text="Commands">
    <Commands>
        <ext:GridCommand Icon="EmailGo">
            <Menu EnableScrolling="false">
                <Items>
                    <ext:MenuCommand Text="Standart" CommandName="Standart" Icon="EmailGo" />
                    <ext:MenuCommand Text="Local" CommandName="Local"
                        Icon="EmailGo" />
                    <ext:MenuCommand Text="Active" CommandName="Active" IconCls="il_icon_dateStart" />
                </Items>
            </Menu>
        </ext:GridCommand>
        <ext:GridCommand CommandName="templateSettings" Icon="CogEdit" />
    </Commands>
    <Listeners>
        <Command Handler="actionOptions(command)" />
    </Listeners>
</ext:CommandColumn>
And here is my GroupingView
<Features>
    <ext:Grouping runat="server" ScrollOffset="16" HideGroupedHeader="true" StartCollapsed="true"
        GroupHeaderTplString="{name}" EnableRowBody="false" EnableNoGroups="False" />
</Features>
In Ext.Net 1.0 it works fine, but now i don't see my GridCommands after expand any group, it works only if i set StartCollapsed="false".

Best regards.