ID
="NotarySearchResultsGrid" runat="server" AutoGenerateColumns="false" OnNeedDataSource="NotarySearchResultsGrid_NeedDataSource"
OnItemCommand="NotarySearchResultsGrid_ItemCommand" AutoGenerateDeleteColumn="false" AutoGenerateEditColumn="false"
AllowDelete="false" AllowEdit="false" AllowInsert="false" AllowSorting="true"
ShowViewDetailsCommandColumn="false"
AllowPaging="true" PageSize="100" PagerStyle-Position="Bottom" PagerStyle-Mode="NextPrevAndNumeric"
>
<MasterTableView DataKeyNames="CommissionNumber" CommandItemDisplay="None" >
<Columns>
<telerik:GridButtonColumn HeaderText="Commission #" UniqueName="CommissionNumberColumn" ButtonType="LinkButton" DataTextField="CommissionNumber"
CommandName="CommissionSelected" SortExpression="CommissionNumber" ></telerik:GridButtonColumn>
<telerik:GridBoundColumn HeaderText="Name" UniqueName="NotaryNameColumn" DataField="Name" SortExpression="Name"></telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Address" UniqueName="AddressColumn" DataField="Address" SortExpression="Address"></telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="City" UniqueName="CityColumn" DataField="City" SortExpression="City"></telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Zip" UniqueName="ZipColumn" DataField="Zip" SortExpression="Zip"></telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="County" UniqueName="CountyColumn" DataField="County" SortExpression="County"></telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Status" UniqueName="StatusColumn" DataField="Status" SortExpression="Status"></telerik:GridBoundColumn>
</Columns>
<NoRecordsTemplate>
<div>
No records to display.
</div>
</NoRecordsTemplate>
</MasterTableView>
However, when the grid displays, there is an extra column at the end of the grid. Looks like a hyphen or the beginning of an underline in the column header area but no data in the column. Using the IE dev toolbar, I'm able to see tha tthe UniqueName for this column is DeleteCommandColumn. Both AllowDelete and AllowAutoGenerateDelete columns are set to false in the code above. Is there another setting I can set too? Nothing jumped out at me.
Thanks,
Dennis