Hi,
I'm adding some columns to a grid dynamically and have a select column but it's rendering incorrectly. See attached png for the problem, but essentially the select hyperlink is appearing inside the first column.
the markup is:
I'm adding some columns to a grid dynamically and have a select column but it's rendering incorrectly. See attached png for the problem, but essentially the select hyperlink is appearing inside the first column.
the markup is:
<telerik:RadGrid ID="RadGrid_FileView" runat="server" Height="318px" AllowSorting="true" AllowPaging="false" AllowFilteringByColumn="false" AutoGenerateColumns="false" OnItemCommand="RadGrid_FileView_ItemCommand" ShowStatusBar="true"> <MasterTableView AutoGenerateColumns="false" DataKeyNames="FileSharepointID"> <Columns> <telerik:GridButtonColumn HeaderText="" Text="Select" CommandName="Select" /> <telerik:GridBoundColumn HeaderText="File" UniqueName="Filename" DataField="Filename" /> </Columns> </MasterTableView> <ClientSettings> <Selecting AllowRowSelect="true" /> </ClientSettings></telerik:RadGrid>