button of ButtonType="ImageButton" not firing the item command, even if the button type changed to anything else it works.
Here is my code..
Here is my code..
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" AllowCustomPaging="True" GridLines="None" onitemcommand="RadGrid1_ItemCommand" ShowGroupPanel="True" Skin="Black"> <MasterTableView><CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings><RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn><ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn> <Columns> <telerik:GridButtonColumn UniqueName="btnDelete" CommandName="CommandDelete" ButtonType="ImageButton" ImageUrl="~/Styles/images/DeleteRed.png" /> </Columns> <PagerStyle AlwaysVisible="true" /><EditFormSettings><EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn></EditFormSettings> </MasterTableView> <ClientSettings EnableRowHoverStyle="false" AllowDragToGroup="True"><Selecting CellSelectionMode="None"></Selecting> </ClientSettings> <PagerStyle AlwaysVisible="True" /><FilterMenu EnableImageSprites="False"></FilterMenu></telerik:RadGrid>