Hello,
I have a Radgrid has one EditCommandColumn and then has columns dynamically generated for it in the Page_Load. This generating two columns that have the Edit link in them for my data.
My question is, is this a function of the grid? If so how can I just limit the grid to generating one Edit column on the left side of the grid.
Here is the asp for my grid.
<telerik:RadGrid ID="RadGrid1" AllowPaging="True" ShowFooter="True" OnNeedDataSource="RadGrid1_NeedDataSource"
runat="server" AutoGenerateEditColumn="true" AutoGenerateColumns="False" AllowSorting="True" OnItemDataBound="RadGrid1_ItemDataBound"
GridLines="Both" CellPadding="0" Skin="Office2007" AllowMultiRowSelection="true" OnUpdateCommand="RadGrid1_UpdateCommand" AllowAutomaticUpdates="False">
<MasterTableView EditMode="InPlace" CommandItemDisplay="Top" ShowFooter="True" AllowFilteringByColumn="True" TableLayout="Fixed">
<Columns>
<telerik:GridEditCommandColumn UniqueName="EditCommandColumn" >
<HeaderStyle Width="20px" />
</telerik:GridEditCommandColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Thank you for any help,
Chris McMahan