Hi,
I do not understand why these events are firing for my grid when all of my columns are read only and I am not using GridEditCommandColumn or GridDeleteCommandColumn
<Columns>
<telerik:GridButtonColumn CommandName="Edit" Text="Edit" UniqueName= "EditColumn"></telerik:GridButtonColumn>
<telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName= "DeleteColumn"></telerik:GridButtonColumn>
<telerik:GridBoundColumn DataField="CustomerID" ReadOnly="true" ></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="CompanyName" ReadOnly="true" ></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ContactName" ReadOnly="true" ></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ContactTitle" ReadOnly="true" ></telerik:GridBoundColumn>
</Columns>
Thanks
Ken