Hi I have an radgrid - I'm trying to implement
<Clientsettings>
<ClientEvents onCommand ="onCommand" />
</Clientsettings>
But I get a a message that onCommand is not a valid attribute - I'm following some of the examples in forums.. but I don't see oncommand as an avaliable event.. what I'm I missing .. thanks again
<telerik:RadGrid ID="RadGridAddress" runat="server" AllowPaging="True"
AllowSorting="True" AutoGenerateColumns="False" AutoGenerateEditColumn="True"
DataSourceID="ObjectDataSource_ADDRESS" EnableEmbeddedSkins="False"
Font-Names="Verdana" Font-Size="Small" GridLines="None" GroupingEnabled="False"
OnInsertCommand="RadGridAddress_InsertCommand"
OnItemCommand="RadGridAddress_ItemCommand"
OnItemDataBound="RadGridAddress_ItemDataBound"
OnItemUpdated="RadGridAddress_ItemUpdated"
OnNeedDataSource="RadGridAddress_NeedDataSource"
OnUpdateCommand="RadGridAddress_UpdateCommand" Skin="WebBlue"
Width="99%" >
<Clientsettings>
<ClientEvents onCommand ="onCommand" />
</Clientsettings>