<
CommandItemTemplate>
<
div align="right">
<
asp:LinkButton Style="vertical-align: bottom" ID="ClearButton" runat="server"
CommandName="Clear" Text="Clear"></asp:LinkButton> |
<
asp:Button runat="server" CommandName="Rebind" CssClass="rgRefresh"/>
<
asp:LinkButton Style="vertical-align: bottom" runat="server" CommandName="Rebind" Text="Refresh"></asp:LinkButton>
</
div>
</
CommandItemTemplate>
how do I prevent my ItemCommand handler from intercepting the default handler functionality in RadGrid being called?
protected void LogGrid_ItemCommand(object source, GridCommandEventArgs e)
{
if (e.CommandName == "Clear")
{
// here I handle my custom Clear command which works fine
return;
}
// but how do I prevent the RadGrid's Rebind command handling from being lost?? I've made various attempts here with RaiseBubbleEvent with no success. Strangely it's only the Rebind functionality that's never called. Commands outside the CommandItemTemplate hitting this function (like DeleteCommand at the row level) still have their functionality carried out by RadGrid.
}
Thanks in advance for any pointers.