Can someone tell my why my GridButtonColumn Below shows up as the 1st column for this grid, instead of as the last column as specified?
<telerik:RadGrid ID="rgACWF1" runat="server" AllowCustomPaging="True" OnItemDataBound="rgACWF1_ItemDataBound" AllowPaging="True" AutoGenerateColumns="False" GridLines="None" OnItemCreated="rgACWF1_ItemCreated" OnItemCommand="rgACWF1_ItemCommand" AllowAutomaticInserts="false"> <PagerStyle BackColor="White" Mode="Advanced" ShowPagerText="false" Position="Bottom" /> <MasterTableView AllowCustomSorting="True" datakeynames="ID" EditMode="InPlace" CommandItemDisplay="Bottom" InsertItemDisplay="Bottom" TableLayout="Auto"> <Columns> <telerik:GridEditCommandColumn UniqueName="ACWF1EditCommandColumn" InsertText="Save" UpdateText="Save" /> <telerik:GridBoundColumn DataField="Name" HeaderText="Rating" /> <telerik:GridNumericColumn DataField="Value" HeaderText="Value" /> <telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName="ACWF1DeleteColumn" /> </Columns> <CommandItemSettings AddNewRecordText="Add New" RefreshText="Refresh" /> <%-- <CommandItemTemplate> <asp:Button runat="server" ID="btnAddConfidentialityScore" Text="Add" CommandName="AddConfidentialityScore" /> </CommandItemTemplate> --%> </MasterTableView> </telerik:RadGrid>