My grid is showing a column that appears to be the row indicator column. I do not want a row indicator column. I have tried setting many attributes to turn it off. I can only assume that it's the row indicator column. I am not adding a column ahead of the edit column. How can I get the first column removed? See my aspx code below:
| <telerik:RadGrid ID="RadGridSignedSessions" Skin="Office2007" runat="server" Width="100%" |
| Height="100%" AutoGenerateColumns="False" PageSize="25" AllowSorting="True" AllowMultiRowSelection="False" |
| AllowPaging="True" GridLines="None" OnNeedDataSource="RadGridSignedSessions_NeedDataSource" |
| Style="border: 0; outline: none" AllowAutomaticDeletes="True" AllowAutomaticInserts="True" |
| AllowAutomaticUpdates="True" EnableAJAX="True"> |
| <PagerStyle Mode="NextPrevAndNumeric"></PagerStyle> |
| <MasterTableView DataKeyNames="ID" AllowMultiColumnSorting="True" CommandItemDisplay="TopAndBottom" AutoGenerateColumns="False" RowIndicatorColumn-Visible="false"> |
| <Columns> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn" HeaderStyle-Width="30px"> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridBoundColumn Visible="false" DataField="ID" UniqueName="ID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn SortExpression="TherapistName" HeaderText="Therapist/Teacher" |
| DataField="TherapistName" UniqueName="TherapistName"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn SortExpression="PatientName" HeaderText="Participant/Patient" |
| DataField="PatientName" UniqueName="PatientName"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn SortExpression="WorkStartTime" HeaderText="Service Date" |
| DataField="WorkStartTimeLocal" UniqueName="WorkStartTime"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn SortExpression="HoursWorked" HeaderText="Hours Worked" DataField="HoursWorked" |
| UniqueName="HoursWorked"> |
| </telerik:GridBoundColumn> |
| <telerik:GridCheckBoxColumn SortExpression="GuardianUnavailableToSign" HeaderText="Guardian/Supervisor Didn't Sign" |
| DataField="GuardianUnavailableToSign" UniqueName="GuardianUnavailableToSign"> |
| </telerik:GridCheckBoxColumn> |
| <telerik:GridCheckBoxColumn SortExpression="SessionApproved" HeaderText="Approved" |
| DataField="SessionApproved" UniqueName="SessionApproved"> |
| </telerik:GridCheckBoxColumn> |
| <telerik:GridButtonColumn ConfirmText="Delete this record?" ConfirmDialogType="RadWindow" |
| ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete" |
| UniqueName="DeleteColumn" HeaderStyle-Width="30px" > |
| </telerik:GridButtonColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="false" AllowColumnsReorder="True" |
| EnablePostBackOnRowClick="True"> |
| <Resizing AllowRowResize="True" AllowColumnResize="True"></Resizing> |
| <Selecting AllowRowSelect="true" /> |
| <Scrolling AllowScroll="true" UseStaticHeaders="true" /> |
| <ClientEvents OnGridCreated="SignedSessionsGridCreated" /> |
| </ClientSettings> |
| </telerik:RadGrid> |